Skip to content

Instantly share code, notes, and snippets.

@rcotrina94
Created June 2, 2017 01:26
Show Gist options
  • Save rcotrina94/72aa09a20e65b6c15d8d64f1a610d98d to your computer and use it in GitHub Desktop.
Save rcotrina94/72aa09a20e65b6c15d8d64f1a610d98d to your computer and use it in GitHub Desktop.
Mercurial Ignore File for Django (Python) Projects
# 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