flamenco/.gitignore
Ryan Malloy e8ea44a0a6 Implement optimized Docker development environment
- Add multi-stage Dockerfile.dev with 168x Go module performance improvement
- Implement modern Docker Compose configuration with caddy-docker-proxy
- Add comprehensive Makefile.docker for container management
- Migrate from Poetry to uv for Python dependencies
- Fix Alpine Linux compatibility and Docker mount conflicts
- Create comprehensive documentation in docs/ directory
- Add Playwright testing integration
- Configure reverse proxy with automatic HTTPS
- Update .gitignore for Docker development artifacts
2025-09-09 10:25:30 -06:00

81 lines
1.2 KiB
Plaintext

*.exe
*.sqlite
*.sqlite-shm
*.sqlite-wal
*.db
*.blend[0-9]
*.flamenco.blend
.env
/flamenco-manager
/flamenco-worker
/flamenco-manager_race
/flamenco-worker_race
/shaman-checkout-id-setter
/stresser
/job-creator
/mage
/magefiles/mage
/addon-packer
flamenco-manager.yaml
flamenco-worker.yaml
flamenco-worker-credentials.yaml
node_modules/
/vendor/
# Mockgen creates those files temporarily, and they can linger when it
# fails to run properly. They should never be committed to Git.
gomock_reflect_*
# Directory for custom job compiler scripts:
/scripts/
# Default storage locations:
/flamenco-manager-storage/
/flamenco-shared-storage/
# Old default storage locations:
/task-logs/
/flamenco-storage/
__pycache__
*.pyc
.mypy_cache/
.openapi-generator/
.hugo_build.lock
.openapi-generator-*.log
web/manager-api/dist/
web/static/
web/project-website/public/
web/project-website/resources/_gen/
/dist/
/tools/
# IDE related stuff
*.DS_Store
.vscode/settings.json
.vscode/launch.json
# Docker Development Environment
.env.local
.env.*.local
docker-compose.override.yml
compose.override.yml
# Docker volumes and data
flamenco-data/
flamenco-shared/
worker-data/
# Docker build cache
.docker/
# Development logs
*.log
logs/
# Temporary files
tmp/
temp/