# .dockerignore # Git files .git .gitignore # Python cache files and virtual environment __pycache__/ *.pyc *.pyo *.pyd venv/ .venv/ env/ ENV/ # IDE / Editor folders .idea/ .vscode/ # OS files .DS_Store Thumbs.db # Secrets / Instance data (handle secrets via runtime env vars, instance via volumes) .env instance/ # Docker files Dockerfile docker-compose.yml # Test files (optional) tests/ *.test.py pytest.ini .pytest_cache/ # Build artifacts (optional) dist/ build/ *.egg-info/