# Git .git .gitignore # Docker Dockerfile docker-compose.yml .dockerignore # Python __pycache__/ *.py[cod] *$py.class *.so .Python build/ develop-eggs/ dist/ downloads/ eggs/ .eggs/ lib/ lib64/ parts/ sdist/ var/ wheels/ *.egg-info/ .installed.cfg *.egg MANIFEST # Virtual environments venv/ env/ ENV/ .venv/ # IDE .vscode/ .idea/ *.swp *.swo *~ # Environment variables .env .env.local .env.production # Logs *.log logs/ # Testing .pytest_cache/ .coverage htmlcov/ .tox/ # Documentation docs/ *.md # OS .DS_Store Thumbs.db # Temporary files *.tmp *.temp temp/ # Storage (will be mounted as volume) storage/* !storage/.gitkeep