2015-05-09 20:51:34 +03:00
|
|
|
### 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
|
|
|
|
|
2013-11-12 19:58:28 +04:00
|
|
|
# Basics
|
|
|
|
*.py[cod]
|
|
|
|
__pycache__
|
|
|
|
|
|
|
|
# Logs
|
2016-09-16 16:28:22 +03:00
|
|
|
logs
|
2013-11-12 19:58:28 +04:00
|
|
|
*.log
|
|
|
|
pip-log.txt
|
2016-09-16 16:28:22 +03:00
|
|
|
npm-debug.log*
|
2013-11-12 19:58:28 +04:00
|
|
|
|
|
|
|
# Unit test / coverage reports
|
|
|
|
.coverage
|
|
|
|
.tox
|
|
|
|
nosetests.xml
|
2015-09-09 04:05:11 +03:00
|
|
|
htmlcov
|
2013-11-12 19:58:28 +04:00
|
|
|
|
|
|
|
# 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:
|
2016-04-20 20:00:35 +03:00
|
|
|
# git update-index --assume-unchanged .idea/{{cookiecutter.project_slug}}.iml
|
2016-03-28 15:34:54 +03:00
|
|
|
!.idea/runConfigurations/
|
2016-04-20 20:00:35 +03:00
|
|
|
!.idea/{{cookiecutter.project_slug}}.iml
|
2016-03-28 15:34:54 +03:00
|
|
|
!.idea/vcs.xml
|
|
|
|
!.idea/webResources.xml
|
|
|
|
{% endif %}
|
2013-11-12 19:58:28 +04:00
|
|
|
|
|
|
|
# Vim
|
|
|
|
|
|
|
|
*~
|
|
|
|
*.swp
|
2014-01-10 01:03:28 +04:00
|
|
|
*.swo
|
|
|
|
|
|
|
|
# npm
|
|
|
|
node_modules/
|
|
|
|
|
2014-12-24 09:13:23 +03:00
|
|
|
# Compass
|
2014-01-10 01:03:28 +04:00
|
|
|
.sass-cache
|
2015-06-28 21:28:41 +03:00
|
|
|
|
|
|
|
# virtual environments
|
|
|
|
.env
|
2015-09-25 02:19:38 +03:00
|
|
|
|
|
|
|
# User-uploaded media
|
2016-04-20 20:00:35 +03:00
|
|
|
{{ cookiecutter.project_slug }}/media/
|
2015-10-20 11:15:50 +03:00
|
|
|
|
2016-09-16 02:01:22 +03:00
|
|
|
{% if cookiecutter.use_mailhog == 'y' and cookiecutter.use_docker == 'n' %}
|
2015-11-16 22:17:03 +03:00
|
|
|
# MailHog binary
|
|
|
|
mailhog
|
2016-04-19 00:10:49 +03:00
|
|
|
{% endif %}
|
2016-09-16 02:01:22 +03:00
|
|
|
|
|
|
|
{% if cookiecutter.use_compressor == 'y' %}
|
|
|
|
staticfiles/
|
|
|
|
{% endif %}
|