2018-11-11 12:40:42 +00:00
|
|
|
|
|
|
|
# Created by https://www.gitignore.io/api/python,django
|
|
|
|
# Edit at https://www.gitignore.io/?templates=python,django
|
|
|
|
|
|
|
|
### Django ###
|
|
|
|
*.log
|
|
|
|
*.pot
|
|
|
|
*.pyc
|
|
|
|
__pycache__/
|
|
|
|
local_settings.py
|
|
|
|
db.sqlite3
|
|
|
|
media
|
|
|
|
|
|
|
|
# If your build process includes running collectstatic, then you probably don't need or want to include staticfiles/
|
|
|
|
# in your Git repository. Update and uncomment the following line accordingly.
|
|
|
|
# <django-project-name>/staticfiles/
|
|
|
|
|
|
|
|
### Django.Python Stack ###
|
|
|
|
# Byte-compiled / optimized / DLL files
|
|
|
|
*.py[cod]
|
|
|
|
*$py.class
|
|
|
|
|
|
|
|
# C extensions
|
|
|
|
*.so
|
|
|
|
|
|
|
|
# Distribution / packaging
|
|
|
|
.Python
|
|
|
|
build/
|
|
|
|
develop-eggs/
|
|
|
|
downloads/
|
|
|
|
eggs/
|
|
|
|
.eggs/
|
|
|
|
lib64/
|
|
|
|
parts/
|
|
|
|
sdist/
|
|
|
|
var/
|
|
|
|
wheels/
|
|
|
|
*.egg-info/
|
|
|
|
.installed.cfg
|
|
|
|
*.egg
|
|
|
|
MANIFEST
|
|
|
|
|
|
|
|
# PyInstaller
|
|
|
|
# Usually these files are written by a python script from a template
|
|
|
|
# before PyInstaller builds the exe, so as to inject date/other infos into it.
|
|
|
|
*.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
|
|
|
|
.hypothesis/
|
|
|
|
.pytest_cache/
|
2019-12-02 15:43:50 +00:00
|
|
|
unittest.xml
|
2018-11-11 12:40:42 +00:00
|
|
|
|
|
|
|
# Translations
|
|
|
|
*.mo
|
|
|
|
|
|
|
|
# Django stuff:
|
|
|
|
|
|
|
|
# Flask stuff:
|
|
|
|
instance/
|
|
|
|
.webassets-cache
|
|
|
|
|
|
|
|
# Scrapy stuff:
|
|
|
|
.scrapy
|
|
|
|
|
|
|
|
# Sphinx documentation
|
|
|
|
docs/_build/
|
|
|
|
|
|
|
|
# PyBuilder
|
|
|
|
target/
|
|
|
|
|
|
|
|
# Jupyter Notebook
|
|
|
|
.ipynb_checkpoints
|
|
|
|
|
|
|
|
# IPython
|
|
|
|
profile_default/
|
|
|
|
ipython_config.py
|
|
|
|
|
|
|
|
# pyenv
|
|
|
|
.python-version
|
|
|
|
|
|
|
|
# celery beat schedule file
|
|
|
|
celerybeat-schedule
|
|
|
|
|
|
|
|
# SageMath parsed files
|
|
|
|
*.sage.py
|
|
|
|
|
|
|
|
# Environments
|
|
|
|
.env
|
|
|
|
.venv
|
|
|
|
env/
|
|
|
|
venv/
|
|
|
|
ENV/
|
|
|
|
env.bak/
|
|
|
|
venv.bak/
|
|
|
|
|
|
|
|
# Spyder project settings
|
|
|
|
.spyderproject
|
|
|
|
.spyproject
|
|
|
|
|
|
|
|
# Rope project settings
|
|
|
|
.ropeproject
|
|
|
|
|
|
|
|
# mkdocs documentation
|
|
|
|
/site
|
|
|
|
|
|
|
|
# mypy
|
|
|
|
.mypy_cache/
|
|
|
|
.dmypy.json
|
|
|
|
dmypy.json
|
|
|
|
|
|
|
|
# Pyre type checker
|
|
|
|
.pyre/
|
|
|
|
|
|
|
|
### Python ###
|
|
|
|
# Byte-compiled / optimized / DLL files
|
|
|
|
|
|
|
|
# C extensions
|
|
|
|
|
|
|
|
# Distribution / packaging
|
|
|
|
|
|
|
|
# PyInstaller
|
|
|
|
# Usually these files are written by a python script from a template
|
|
|
|
# before PyInstaller builds the exe, so as to inject date/other infos into it.
|
|
|
|
|
|
|
|
# Installer logs
|
|
|
|
|
|
|
|
# Unit test / coverage reports
|
|
|
|
|
|
|
|
# Translations
|
|
|
|
|
|
|
|
# Django stuff:
|
|
|
|
|
|
|
|
# Flask stuff:
|
|
|
|
|
|
|
|
# Scrapy stuff:
|
|
|
|
|
|
|
|
# Sphinx documentation
|
|
|
|
|
|
|
|
# PyBuilder
|
|
|
|
|
|
|
|
# Jupyter Notebook
|
|
|
|
|
|
|
|
# IPython
|
|
|
|
|
|
|
|
# pyenv
|
|
|
|
|
|
|
|
# celery beat schedule file
|
|
|
|
|
|
|
|
# SageMath parsed files
|
|
|
|
|
|
|
|
# Environments
|
|
|
|
|
|
|
|
# Spyder project settings
|
|
|
|
|
|
|
|
# Rope project settings
|
|
|
|
|
|
|
|
# mkdocs documentation
|
|
|
|
|
|
|
|
# mypy
|
|
|
|
|
|
|
|
# Pyre type checker
|
|
|
|
|
|
|
|
### Python Patch ###
|
|
|
|
.venv/
|
|
|
|
|
|
|
|
### Python.VirtualEnv Stack ###
|
|
|
|
# Virtualenv
|
|
|
|
# http://iamzed.com/2009/05/07/a-primer-on-virtualenv/
|
|
|
|
[Bb]in
|
|
|
|
[Ii]nclude
|
|
|
|
[Ll]ib64
|
|
|
|
[Ll]ocal
|
|
|
|
pyvenv.cfg
|
|
|
|
pip-selfcheck.json
|
|
|
|
|
|
|
|
# End of https://www.gitignore.io/api/python,django
|
2019-02-21 16:01:12 +00:00
|
|
|
/static/
|
2018-12-18 12:24:26 +00:00
|
|
|
local.env.yml
|
2019-10-01 08:17:39 +00:00
|
|
|
.vscode/
|
2019-11-07 09:24:27 +00:00
|
|
|
|
|
|
|
### Helm ###
|
|
|
|
# Chart dependencies
|
|
|
|
**/charts/*.tgz
|
2020-07-02 19:55:02 +00:00
|
|
|
|
|
|
|
# Selenium Screenshots
|
|
|
|
selenium_screenshots/**
|
2020-11-15 21:42:02 +00:00
|
|
|
backups/
|