33 lines
414 B
Text
33 lines
414 B
Text
|
|
.git
|
||
|
|
.env
|
||
|
|
.env.*
|
||
|
|
!.env.example
|
||
|
|
.venv
|
||
|
|
__pycache__
|
||
|
|
.pytest_cache
|
||
|
|
.ruff_cache
|
||
|
|
.mypy_cache
|
||
|
|
*.py[cod]
|
||
|
|
|
||
|
|
# Node modules (re-installed in Docker)
|
||
|
|
**/node_modules
|
||
|
|
|
||
|
|
# Build outputs (re-built in Docker)
|
||
|
|
frontend/dist
|
||
|
|
packages/*/dist
|
||
|
|
*.tsbuildinfo
|
||
|
|
|
||
|
|
# Dev/test artifacts
|
||
|
|
coverage
|
||
|
|
*.log
|
||
|
|
.DS_Store
|
||
|
|
.idea
|
||
|
|
.vscode
|
||
|
|
|
||
|
|
# Docker-in-Docker
|
||
|
|
docker-compose.yml
|
||
|
|
**/Dockerfile
|
||
|
|
|
||
|
|
# Backend (not needed for bridge/frontend containers)
|
||
|
|
backend/
|