# Secrets (Avoid copying sensitive files into the image) .credentials .secrets auth.yaml *._py_ # Editors (Editor-specific config files) .vscode/ .idea/ # Vagrant (Vagrant-specific config) .vagrant/ # Mac/OSX metadata files .DS_Store # Windows metadata files Thumbs.db # Python compiled bytecode and cache __pycache__/ *.py[cod] *$py.class # C extensions (if not needed during runtime) *.so # Distribution / packaging .Python bin/ build/ develop-eggs/ dist/ downloads/ eggs/ .eggs/ lib/ lib64/ parts/ sdist/ var/ wheels/ share/python-wheels/ *.egg-info/ .installed.cfg *.egg MANIFEST # PyInstaller (Avoid including PyInstaller build artifacts) *.manifest *.spec # Installer logs pip-log.txt pip-delete-this-directory.txt # Unit test / coverage reports (Not needed for the Docker image) htmlcov/ .tox/ .nox/ .coverage .coverage.* .cache nosetests.xml coverage.xml *.cover cover/ .hypothesis/ .pytest_cache/ # Translations *.mo *.pot # Django, Flask, and other project-specific files (database, logs, etc.) *.log local_settings.py db.sqlite3 db.sqlite-journal instance/ .webassets-cache # Scrapy .scrapy # Sphinx documentation build output docs/_build/ # Jupyter Notebook .ipynb_checkpoints # IPython profile_default/ ipython_config.py # Virtual environments (Avoid including your virtual environments) .env .venv env/ venv/ ENV/ env.bak/ venv.bak/ # Poetry and other package manager locks poetry.lock pdm.lock .pdm.toml .pdm-python .pdm-build/ # Python environment files (pyenv, pdm, etc.) .python-version __pypackages__/ # Celery celerybeat-schedule celerybeat.pid # Other type checkers and linters (mypy, pyre, etc.) .mypy_cache/ .dmypy.json dmypy.json .pyre/ .pytype/ cython_debug/