Skip to content

Instantly share code, notes, and snippets.

@jasimmk
Created September 19, 2014 06:41
Show Gist options
  • Save jasimmk/3231888e21cabbf42465 to your computer and use it in GitHub Desktop.
Save jasimmk/3231888e21cabbf42465 to your computer and use it in GitHub Desktop.
Gitignore for Python WebDevelopment
# Boilerplate for .gitignore, Ignores unnecessary file extension/folders for python web development
# OS Stuff
.DS_Store
Thumbs.db
.sass-cache
*.*~
*.bak
*.coverage
# Python Files
*.py[cod~]
# 'python setup.py develop'
*.egg-info
# Editors & IDE
# Emacs
*~
\#*#
.#*
# Vim swap
*.swp
# PyCharm files
.idea
# Sublime
*.sublime-project
*.sublime-workspace
# Test and Build files
# nose, coverage
dist/
.coverage
coverage.xml
coverage_report/
nosetests.xml
pylint.txt
# Ignore project files
[Bb]uild/
.settings/
.project
.pydevproject
.conflict
# node
node_modules/
bower/
# Logs
*.log
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment