Files
DinQuant/.gitignore
T
TIANHE abbad97bdd v2.2.1: frontend closed-source + Docker one-click deploy
- Remove frontend source code (now in private repo)
- Add pre-built frontend/dist/ with Nginx serving
- Simplify docker-compose.yml (no Node.js build needed)
- Update README with docs index and Docker deploy guide
- Add admin order list and AI analysis stats tabs
- Add quick trade API routes
- Clean up redundant files (package-lock.json, yarn.lock, .iml)
- Add GitHub Actions workflow for frontend update automation
2026-02-27 19:57:23 +08:00

75 lines
1.3 KiB
Plaintext

# ============================================
# QuantDinger - Open Source Repository
# Frontend is closed-source, only dist/ is tracked.
# ============================================
# ========================
# Frontend Source (CLOSED SOURCE - NOT tracked)
# ========================
/quantdinger_vue/
# ========================
# Frontend dist - DO track (pre-built)
# ========================
!/frontend/
!/frontend/dist/
!/frontend/dist/**
# ========================
# Environment & Secrets
# ========================
.env
.env.local
.env.*.local
backend_api_python/.env
# ========================
# IDE & OS
# ========================
.idea/
.vscode/
*.swp
*.swo
*~
.DS_Store
Thumbs.db
*.iml
# ========================
# Python
# ========================
__pycache__/
*.py[cod]
*$py.class
*.egg-info/
dist/
build/
*.egg
.eggs/
venv/
.venv/
env/
# ========================
# Node (if any remain)
# ========================
node_modules/
npm-debug.log*
yarn-debug.log*
yarn-error.log*
package-lock.json
yarn.lock
# ========================
# Logs & Runtime Data
# ========================
*.log
backend_api_python/logs/
backend_api_python/data/quantdinger.db
backend_api_python/data/memory/
# ========================
# Docker
# ========================
docker-compose.override.yml