Last active
July 22, 2016 01:31
-
-
Save Shellbye/e9f7510add592eaaaeb0ac4e5b2a9e65 to your computer and use it in GitHub Desktop.
gitignore file for build django site using Pycharm
This file contains hidden or 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
| *.py[cod] | |
| # C extensions | |
| *.so | |
| # Packages | |
| *.egg | |
| *.egg-info | |
| dist | |
| build | |
| eggs | |
| parts | |
| bin | |
| var | |
| sdist | |
| develop-eggs | |
| .installed.cfg | |
| lib64 | |
| # Unit test / coverage reports | |
| .coverage | |
| .tox | |
| nosetests.xml | |
| # Translations | |
| *.mo | |
| .idea/ | |
| .svn/ | |
| log/* | |
| *.sqlite3 | |
| media/* | |
| node_modules | |
| .tmp | |
| .svn | |
| .grunt | |
| bower_components/ | |
| vendor/ | |
| .DS_Store | |
| *.iml | |
| *.ipr | |
| *.iws | |
| *.xml | |
| .tmp* | |
| npm-debug.log | |
| # Windows image file caches | |
| Thumbs.db | |
| ehthumbs.db | |
| # Folder config file | |
| Desktop.ini | |
| # Recycle Bin used on file shares | |
| $RECYCLE.BIN/ | |
| # Git file | |
| .gitconfig | |
| git_stats/ | |
| # below comes from https://github.com/github/gitignore/blob/master/Python.gitignore | |
| # Django stuff: | |
| *.log | |
| local_settings.py | |
| # Flask stuff: | |
| instance/ | |
| .webassets-cache | |
| # Scrapy stuff: | |
| .scrapy | |
| # Sphinx documentation | |
| docs/_build/ | |
| # PyBuilder | |
| target/ | |
| # IPython Notebook | |
| .ipynb_checkpoints | |
| # pyenv | |
| .python-version | |
| # celery beat schedule file | |
| celerybeat-schedule | |
| # dotenv | |
| .env | |
| # virtualenv | |
| venv/ | |
| ENV/ | |
| # Spyder project settings | |
| .spyderproject | |
| # Rope project settings | |
| .ropeproject | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment