- run_dev.py: starts proxy, admin and frontend together with colored output per process; handles SIGTERM from PyCharm Stop button - .idea/runConfigurations/Dev.xml: PyCharm Python run config - .gitignore: allow Dev.xml via layered negation pattern - vite.config.js: open browser automatically on dev server start
28 lines
307 B
Plaintext
28 lines
307 B
Plaintext
# Python
|
|
__pycache__/
|
|
*.pyc
|
|
*.pyo
|
|
.venv/
|
|
*.egg-info/
|
|
|
|
# Environment & secrets
|
|
.env
|
|
*.env.local
|
|
|
|
# Databases
|
|
*.db
|
|
*.sqlite3
|
|
|
|
# IDE
|
|
.idea/*
|
|
!.idea/runConfigurations/
|
|
.idea/runConfigurations/*
|
|
!.idea/runConfigurations/Dev.xml
|
|
.vscode/
|
|
|
|
# Frontend build
|
|
frontend/node_modules/
|
|
frontend/dist/
|
|
|
|
# Misc
|
|
config.json |