forked from tjcsl/ion
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.gitignore
58 lines (49 loc) · 791 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
49
50
51
52
53
54
55
56
57
58
# Python-specific ignores
.eggs
*.pyc
__pycache__
__pycache__/*
Pipfile
# Build stuff ignores
build
.coverage
dist/*.tar.gz
# General ignores
*.crt
*.dbg
dump.rdb
*.DS_Store
.DS_STORE
*.key
*.log
*.swp
celerybeat-schedule
celerybeat-schedule.*
# Development-specific ignores
devconfig.json
.vagrant
# Text editors ignores
.idea/
*.sublime-project
*.sublime-workspace
# mypy-related ignores
.mypy_cache
# Ion-specific ignores
celerybeat-schedule.db
intranet/apps/files/cred.py*
intranet/collected_static
intranet/static/**/.sass-cache
intranet/static/css/tmp*
maintenance_mode_state.txt
uploads/*
# Fixture-related ignores
fixtures/**/*.json
fixtures/README.txt
fixtures/*.sql
*fixtures*.tar*
# NPM-related ignores
node_modules/
package-lock.json
# Virtual environments
venv/
.venv/