2017-07-18 03:48:40 +02:00
|
|
|
# Quick format and style primer:
|
|
|
|
#
|
|
|
|
# * If a pattern is meant only for a specific location, it should have a
|
|
|
|
# leading slash, like `/staticfiles.json`.
|
|
|
|
# * In principle any non-trailing slash (like `zproject/dev-secrets.conf`)
|
|
|
|
# will do, but this makes a confusing pattern. Adding a leading slash
|
|
|
|
# is clearer.
|
|
|
|
#
|
|
|
|
# * Patterns like `.vscode/` without slashes, or with only a trailing slash,
|
|
|
|
# match in any subdirectory.
|
|
|
|
#
|
|
|
|
# * Subdirectories with several internal things to ignore get their own
|
|
|
|
# `.gitignore` files.
|
|
|
|
#
|
|
|
|
# See `git help ignore` for details on the format.
|
|
|
|
|
|
|
|
## Config files for the dev environment
|
|
|
|
/zproject/dev-secrets.conf
|
|
|
|
/tools/conf.ini
|
|
|
|
/tools/custom_provision
|
|
|
|
|
|
|
|
## Byproducts of setting up and using the dev environment
|
2012-08-28 20:57:02 +02:00
|
|
|
*.pyc
|
2017-07-18 03:48:40 +02:00
|
|
|
|
|
|
|
/queue_error
|
|
|
|
.vagrant
|
|
|
|
/var
|
|
|
|
|
|
|
|
# Static build
|
|
|
|
*.mo
|
|
|
|
npm-debug.log
|
|
|
|
/node_modules
|
2013-01-30 23:11:34 +01:00
|
|
|
/prod-static
|
2017-07-18 03:48:40 +02:00
|
|
|
/staticfiles.json
|
|
|
|
/webpack-stats-production.json
|
|
|
|
|
|
|
|
# Test / analysis tools
|
|
|
|
.coverage
|
|
|
|
coverage/
|
|
|
|
|
|
|
|
api/bots/john/assets/var/database.db
|
|
|
|
|
|
|
|
## Files left by various editors and local environments
|
|
|
|
# (Ideally these should be in everyone's respective personal gitignore files.)
|
|
|
|
*~
|
2012-12-18 21:23:16 +01:00
|
|
|
*.sw[po]
|
2016-06-23 02:28:48 +02:00
|
|
|
.idea
|
2017-07-18 03:48:40 +02:00
|
|
|
.kdev4
|
2014-01-22 17:46:46 +01:00
|
|
|
zulip.kdev4
|
|
|
|
.kateproject.d/
|
|
|
|
.kateproject
|
|
|
|
*.kate-swp
|
2016-11-02 07:23:16 +01:00
|
|
|
*.sublime-project
|
|
|
|
*.sublime-workspace
|
2016-11-12 23:57:11 +01:00
|
|
|
.vscode/
|
2017-07-18 03:48:40 +02:00
|
|
|
*.DS_Store
|
|
|
|
|
|
|
|
## Miscellaneous
|
|
|
|
# (Ideally this section is empty.)
|