Skip to content
Django
11. Django Files Cheatsheet
gitignore

Git ignore file

.gitignore
### Environments =========
.env
.venv
env/
venv/
ENV/
env.bak/
venv.bak/
 
 
### Django ===============
*.log
*.pot
*.pyc
__pycache__/
local_settings.py
 
# 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/
staticfiles/
 
### Jupyter Notebook =========
.ipynb_checkpoints