Created
June 2, 2017 01:26
-
-
Save rcotrina94/72aa09a20e65b6c15d8d64f1a610d98d to your computer and use it in GitHub Desktop.
Mercurial Ignore File for Django (Python) Projects
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
# glob syntax | |
syntax: glob | |
# Temp files | |
*.bak | |
*.orig | |
*.pyc | |
*~ | |
# Nodejs | |
node_modules/* | |
# Django | |
media/* | |
static_files/* | |
# Builds | |
build/* | |
# IDEs | |
*.log* | |
*.nja | |
*.sublime-* | |
*.~* | |
.project | |
.pydevproject | |
.settings/* | |
# DBs | |
*.dat | |
*.db | |
*.db-journal | |
*.sqlite | |
*.sqlite3 | |
# git | |
.git/* | |
.gitignore | |
.svn | |
# switch to regexp syntax. | |
syntax: regexp | |
settings/[a-zA-Z0-9]+.py$ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment