49 lines
562 B
Plaintext
49 lines
562 B
Plaintext
# General
|
|
.DS_Store
|
|
Thumbs.db
|
|
*.log
|
|
*.tmp
|
|
|
|
# Python
|
|
.venv/
|
|
__pycache__/
|
|
*.py[cod]
|
|
*.pyo
|
|
*.pyd
|
|
*.so
|
|
*.egg-info/
|
|
*.egg
|
|
.build/
|
|
.mypy_cache/
|
|
.pytest_cache/
|
|
.coverage
|
|
htmlcov/
|
|
|
|
# Node / Frontend
|
|
frontend/node_modules/
|
|
frontend/dist/
|
|
frontend/.vite/
|
|
frontend/playwright-report/
|
|
frontend/test-results/
|
|
frontend/.playwright/
|
|
|
|
# Environment & local config
|
|
.env
|
|
.env.*
|
|
!.env.example
|
|
|
|
# Database & tooling artifacts
|
|
alembic.ini.timestamp
|
|
*.sqlite
|
|
|
|
# VS Code / IDEs
|
|
.vscode/
|
|
.idea/
|
|
*.iml
|
|
|
|
# Project specific
|
|
rail_game_backend.egg-info/
|
|
.github/instructions/
|
|
|
|
# TODO
|
|
TODO.md |