66 lines
614 B
Plaintext
66 lines
614 B
Plaintext
# Git
|
|
.git
|
|
.gitignore
|
|
|
|
# Virtual environment
|
|
venv/
|
|
env/
|
|
.env.local
|
|
.env.development
|
|
.env.production
|
|
|
|
# Python cache
|
|
__pycache__/
|
|
*.pyc
|
|
*.pyo
|
|
*.pyd
|
|
.Python
|
|
*.egg-info/
|
|
dist/
|
|
build/
|
|
|
|
# IDE
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
|
|
# Logs
|
|
*.log
|
|
logs/
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Documentation
|
|
*.md
|
|
docs/
|
|
|
|
# Test files
|
|
tests/
|
|
.pytest_cache/
|
|
|
|
# Coverage
|
|
.coverage
|
|
htmlcov/
|
|
|
|
# Node modules (for frontend)
|
|
frontend/node_modules/
|
|
frontend/.npm
|
|
frontend/.next/
|
|
frontend/out/
|
|
frontend/dist/
|
|
|
|
# Uploads (will be mounted as volume)
|
|
uploads/*
|
|
!uploads/.gitkeep
|
|
|
|
# Docker
|
|
Dockerfile*
|
|
docker-compose*
|
|
.dockerignore
|
|
|
|
# Database
|
|
*.db
|
|
*.sqlite3 |