diff --git a/.gitignore b/.gitignore index e4c74a3..5093ffb 100644 --- a/.gitignore +++ b/.gitignore @@ -2,36 +2,128 @@ __pycache__/ *.py[cod] *$py.class +**/__pycache__/ +**/*.py[cod] -# Environments +# C extensions +*.so + +# Virtual environment .env -venv/ +.venv env/ -*/.venv/ +venv/ +ENV/ +env.bak/ +venv.bak/ -# Django specific -*.sqlite3 -*.sqlite3-journal +# pipenv +Pipfile.lock + +# Poetry +poetry.lock + +# PyInstaller +*.manifest +*.spec + +# Installer logs +pip-log.txt +pip-delete-this-directory.txt + +# Unit test / coverage reports +htmlcov/ +.tox/ +.nox/ +.coverage +.coverage.* +.cache +nosetests.xml +coverage.xml +*.cover +*.py,cover +.hypothesis/ +.pytest_cache/ + +# Django stuff: *.log local_settings.py -*/migrations/ +db.sqlite3 +db.sqlite3-journal +media/ +staticfiles/ -# Static and media files -*/static/ -*/media/ +# Translations +*.mo -# IDE specific +# Django migrations +**/migrations/*.pyc +**/migrations/__pycache__/ +**/migrations/*.py + +# PyCharm .idea/ -*.iml -.vscode/ -*.suo -*.ntvs* -*.njsproj -*.sln -*.swp -# OS and System files -.DS_Store -Thumbs.db +# VS Code +.vscode/ + +# MyPy +.mypy_cache/ +.dmypy.json +dmypy.json + +# Pyre type checker +.pyre/ + +# Profiles +.prof + +# Backup files +*~ *.bak -*.tmp \ No newline at end of file +*.swp +*.swo + +# macOS +.DS_Store + +# Windows +Thumbs.db +ehthumbs.db +Desktop.ini + +# dotenv environment variables +*.env +*.env.* + +# coverage reports +*.lcov + +# Docker +**/Dockerfile +**/docker-compose*.yml + +# Build +build/ +dist/ +*.egg-info/ +.eggs/ + +# If you use celery +celerybeat-schedule +celerybeat.pid + +# If you use Sphinx +docs/_build/ + +# PyBuilder +target/ + +# Jupyter Notebook +.ipynb_checkpoints + +# pyenv +.python-version + +# Environments +.env/