58 lines
569 B
Plaintext
58 lines
569 B
Plaintext
# Git
|
|
.git
|
|
.gitignore
|
|
|
|
# Python
|
|
__pycache__
|
|
*.py[cod]
|
|
*$py.class
|
|
*.so
|
|
.Python
|
|
.venv
|
|
.python-version
|
|
*.egg-info
|
|
dist
|
|
build
|
|
|
|
# Node
|
|
node_modules
|
|
npm-debug.log
|
|
yarn-error.log
|
|
|
|
# IDEs
|
|
.vscode
|
|
.idea
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Environment
|
|
.env
|
|
.env.local
|
|
|
|
# Database (will be persisted via volumes)
|
|
*.db
|
|
*.sqlite
|
|
*.sqlite3
|
|
|
|
# Logs
|
|
*.log
|
|
|
|
# Docker
|
|
Dockerfile*
|
|
docker-compose*.yml
|
|
.dockerignore
|
|
|
|
# Documentation
|
|
README.md
|
|
CLAUDE.md
|
|
|
|
# Frontend build output (not needed during image build)
|
|
frontend/frontend/dist
|
|
backend/static/index.html
|
|
backend/static/assets
|