-
Notifications
You must be signed in to change notification settings - Fork 0
/
.gitignore
48 lines (41 loc) · 992 Bytes
/
.gitignore
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
# Various IDE and OS files to ignore
.DS_Store
*.pyc
__pycache__
*.swp
.pydevproject
.idea
tscommand-*
.tscache
.coverage
coverage.json
# per-machine configuration files; contains secrets, DO NOT CHECK-IN
secrets.env
/secrets
# per-machine local settings files; this will override default settings with local changes
server/edd/settings/local/*
**/local.py
**/docker-compose.override.yml
settings/*
!settings/example
# also ignore any local media/upload folders
**/media
**/upload
**/uploads
# and ignore local log directory
**/log
# and generated coverage reports
**/htmlcov
# ignore typescript generated files in mounted code folders
**/main/static/dist
typescript/modules/**/*.d.ts
typescript/src/**/*.d.ts
data/result_logs/*
# ignore filepath to local equilibrator sqllite compounds database
equilibrator_filepath.txt
# ignore mkdocs generated files
site
# these no longer should get generated, but older clones may have these files still
secrets.cfg
bower_components
node_modules