cookiecutter-django/{{cookiecutter.repo_name}}/.gitignore

73 lines
1.2 KiB
Plaintext
Raw Normal View History

### OSX ###
.DS_Store
.AppleDouble
.LSOverride
### SublimeText ###
# cache files for sublime text
*.tmlanguage.cache
*.tmPreferences.cache
*.stTheme.cache
# workspace files are user-specific
*.sublime-workspace
# project files should be checked into the repository, unless a significant
# proportion of contributors will probably not be using SublimeText
# *.sublime-project
# sftp configuration file
sftp-config.json
# Basics
*.py[cod]
__pycache__
# Logs
*.log
pip-log.txt
# Unit test / coverage reports
.coverage
.tox
nosetests.xml
htmlcov
# Translations
*.mo
*.pot
# Pycharm
2016-03-28 15:34:54 +03:00
.idea/*
{% if cookiecutter.use_pycharm == 'y' %}
# Provided default Pycharm Run/Debug Configurations should be tracked by git
# In case of local modifications made by Pycharm, use update-index command
# for each changed file, like this:
# git update-index --assume-unchanged .idea/{{cookiecutter.repo_name}}.iml
!.idea/runConfigurations/
!.idea/{{cookiecutter.repo_name}}.iml
!.idea/vcs.xml
!.idea/webResources.xml
{% endif %}
# Vim
*~
*.swp
*.swo
# npm
node_modules/
2014-12-24 09:13:23 +03:00
# Compass
.sass-cache
# virtual environments
.env
2015-09-25 02:19:38 +03:00
# User-uploaded media
{{ cookiecutter.repo_name }}/media/
# Hitch directory
tests/.hitch