29 lines
348 B
Plaintext
29 lines
348 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
|
|
!.idea/runConfigurations/Docker_Push.xml
|
|
.vscode/
|
|
|
|
# Frontend build
|
|
frontend/node_modules/
|
|
frontend/dist/
|
|
|
|
# Misc
|
|
config.json |