# ============================================
# QuantDinger - Open Source Repository
# ============================================

# ========================
# Frontend
# ========================
# Frontend source lives in the private QuantDinger-Vue repo. The published
# `ghcr.io/<owner>/quantdinger-frontend` image is consumed via docker-compose
# by default. For local source iteration, clone QuantDinger-Vue into the
# `/QuantDinger-Vue/` slot below and run `docker compose up --build` — that
# path is referenced by docker-compose.yml's frontend `build.context`
# directive. Nothing under these paths should ever be committed here.
/quantdinger_vue/
/QuantDinger-Vue-src/
/QuantDinger-Vue/
/frontend/

# ========================
# Environment & Secrets
# ========================
.env
.env.local
.env.*.local
backend_api_python/.env

# ========================
# IDE & OS
# ========================
.idea/
.vscode/
agent-tools/
*.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/dist/

# MCP server build artifacts (PyPI release output, never committed)
mcp_server/dist/
mcp_server/build/
mcp_server/.smoketest/
mcp_server/src/quantdinger_mcp.egg-info/
backend_api_python/data/quantdinger.db
backend_api_python/data/memory/

# ========================
# i18n tooling
# ========================
scripts/.i18n-cache/
QuantDinger-Vue-src/src/locales/lang/*.bak

# ========================
# Docker
# ========================
docker-compose.override.yml
