Created
December 23, 2018 17:22
-
-
Save nourspace/7e98e8d6e5867a04979d63a42ebb67c6 to your computer and use it in GitHub Desktop.
Django App .gitignore
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
### OS and IDEs | |
.idea/ | |
.vscode/ | |
.DS_Store | |
### Python | |
# Byte-compiled / optimized / DLL files | |
__pycache__/ | |
*.py[cod] | |
*$py.class | |
# Unit test / coverage reports | |
htmlcov/ | |
.tox/ | |
.coverage | |
.coverage.* | |
.cache | |
coverage.xml | |
*.cover | |
.pytest_cache/ | |
# Django stuff | |
*.log | |
db.sqlite3 | |
# assumes STATIC_ROOT = BASE_DIR / 'staticroot' | |
staticroot/ | |
# Environments | |
.env | |
.venv/ | |
venv/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment