31 lines
337 B
Plaintext
31 lines
337 B
Plaintext
# Python
|
|
__pycache__/
|
|
*.py[cod]
|
|
*.pyo
|
|
.mypy_cache/
|
|
.pytest_cache/
|
|
|
|
# Node / JS
|
|
node_modules/
|
|
frontend/node_modules/
|
|
frontend/dist/
|
|
|
|
# Build output (optional)
|
|
dist/
|
|
build/
|
|
|
|
# Environment
|
|
.env
|
|
*.env
|
|
!.env.example
|
|
|
|
# Data and generated artifacts (runtime only)
|
|
data/postgres/
|
|
data/redis/
|
|
data/storage/
|
|
|
|
# OS / IDE
|
|
.DS_Store
|
|
.vscode/
|
|
.idea/
|