Created
March 7, 2012 02:15
-
-
Save nus/1990471 to your computer and use it in GitHub Desktop.
.gitignore for web2py
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
# for web2py | |
cache | |
databases | |
errors | |
sessions | |
# inherit https://github.com/github/gitignore/blob/master/Python.gitignore | |
*.py[co] | |
# Packages | |
*.egg | |
*.egg-info | |
dist | |
build | |
eggs | |
parts | |
bin | |
var | |
sdist | |
develop-eggs | |
.installed.cfg | |
# Installer logs | |
pip-log.txt | |
# Unit test / coverage reports | |
.coverage | |
.tox | |
#Translations | |
*.mo | |
#Mr Developer | |
.mr.developer.cfg |
I'd suggest adding 'uploads' to the list of excluded web2py folders:
https://gist.github.com/mans0954/cc4634a8406994a289ca/
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thanks! I forgot to add cache in mine, a quick look here solves that :)