- Add Dockerfile with multi-stage build for production deployment - Add docker-compose.yml for easy local development - Add .dockerignore to optimize Docker build context - Update README with Docker and local setup instructions
51 lines
469 B
Plaintext
51 lines
469 B
Plaintext
# Python
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
*.so
|
|
.Python
|
|
venv/
|
|
env/
|
|
ENV/
|
|
*.egg-info/
|
|
dist/
|
|
build/
|
|
|
|
# IDE
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# Git
|
|
.git/
|
|
.gitignore
|
|
|
|
# Environment files (will be mounted separately)
|
|
.env
|
|
|
|
# Documentation
|
|
README.md
|
|
|
|
# CI/CD
|
|
.github/
|
|
|
|
# Claude
|
|
.claude/
|
|
|
|
# Instance data (will be mounted as volume)
|
|
src/app/instance/
|
|
src/app/static/images/
|
|
src/app/static/barcodes/
|
|
|
|
# Test files
|
|
*.pyc
|
|
.pytest_cache/
|
|
.coverage
|
|
htmlcov/
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|