Files
Quantitative-Trading-Platform/.gitignore
JamesTang 0121cb6097 Initial commit: UI/UX dashboard skeleton
- Basic Flask backend with mock metrics API
- Bootstrap/Chart.js frontend dashboard
- Displays key metrics: PnL, drawdown, win rate
- Interactive charts and auto-refresh
- Ready for integration with real data sources
2026-02-04 10:41:02 +08:00

53 lines
449 B
Plaintext

# Python
__pycache__/
*.py[cod]
*$py.class
*.so
.Python
build/
develop-eggs/
dist/
downloads/
eggs/
.eggs/
lib/
lib64/
parts/
sdist/
var/
wheels/
*.egg-info/
.installed.cfg
*.egg
# Virtual Environment
.env
.venv
env/
venv/
ENV/
env.bak/
venv.bak/
# IDE
.vscode/
.idea/
*.swp
*.swo
# OS
.DS_Store
Thumbs.db
# Logs
*.log
# Environment variables
.env.local
.env.development.local
.env.test.local
.env.production.local
# Temporary files
tmp/
temp/