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.
|
|
|
|
#
|
2017-11-17 23:26:40 +01:00
|
|
|
# * Comments must be on their own line. (Otherwise they don't work.)
|
|
|
|
#
|
2017-07-18 03:48:40 +02:00
|
|
|
# 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
|
2017-10-29 02:02:58 +01:00
|
|
|
/tools/droplets/conf.ini
|
2017-07-18 03:48:40 +02:00
|
|
|
|
|
|
|
## Byproducts of setting up and using the dev environment
|
2012-08-28 20:57:02 +02:00
|
|
|
*.pyc
|
2017-11-24 19:25:28 +01:00
|
|
|
package-lock.json
|
2017-07-18 03:48:40 +02:00
|
|
|
|
2017-07-18 03:59:48 +02:00
|
|
|
/.vagrant
|
2017-07-18 03:48:40 +02:00
|
|
|
/var
|
|
|
|
|
2018-01-30 20:17:30 +01:00
|
|
|
# Dockerfiles generated for CircleCI
|
|
|
|
/tools/circleci/images
|
|
|
|
|
2017-07-18 03:48:40 +02:00
|
|
|
# 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
|
2017-05-22 21:01:58 +02:00
|
|
|
/yarn-error.log
|
2017-07-18 03:48:40 +02:00
|
|
|
|
|
|
|
# Test / analysis tools
|
|
|
|
.coverage
|
|
|
|
|
2017-11-17 23:31:14 +01:00
|
|
|
## Files (or really symlinks) created in a prod deployment
|
|
|
|
/zproject/prod_settings.py
|
|
|
|
/zulip-current-venv
|
|
|
|
/zulip-py3-venv
|
|
|
|
|
2017-07-18 03:48:40 +02:00
|
|
|
## 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
|
2017-11-17 23:26:40 +01:00
|
|
|
# .cache/ is generated by VSCode's test runner
|
|
|
|
.cache/
|
2017-12-07 01:56:39 +01:00
|
|
|
.eslintcache
|
2017-07-18 03:48:40 +02:00
|
|
|
|
|
|
|
## Miscellaneous
|
|
|
|
# (Ideally this section is empty.)
|
2017-11-09 16:31:57 +01:00
|
|
|
zthumbor/thumbor_local_settings.py
|