forked from RealTimeWeb/Blockpy-Server
-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy path.gitignore
More file actions
75 lines (61 loc) · 1.08 KB
/
.gitignore
File metadata and controls
75 lines (61 loc) · 1.08 KB
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
.env
.env.db
conf/nginx/nginx.conf
conf/.env.dev.db
conf/.env.prod.db
conf/.env.dev
conf/.env.prod
docs/~*
# Prevent committing server-side files
kennel.sock
# The per-installation config for flask
instance/*
!instance/configuration.py.template
!instance/certs/
instance/certs/*
!instance/certs/.gitkeep
# Frontend
node_modules/
# Virtual environment
venv/
venv_old/
env/
# Certain static files
static/.webassets-cache/*
static/.webassets-cache/.gitkeep
static/gen/*
!static/gen/.gitkeep
static/uploads/*
!static/uploads/submission_blocks/
static/uploads/submission_blocks/*
!static/uploads/submission_blocks/.gitkeep
!static/uploads/.gitkeep
static/canvas/
static/reports/*
!static/reports/.gitkeep
static/public/*
!static/public/.gitkeep
# Databases, logs, etc.
database/
logs/*
!logs/.gitkeep
log/
queued_logs/
backups/*
!logs/.gitkeep
kennel.wsgi
certs/*
!certs/.gitkeep
settings/*.json
settings/*.yaml
frontend/node_modules/
# Byte-compiled / optimized / DLL files
__pycache__/
*.py[cod]
*$py.class
# Django stuff:
*.log
.webassets-cache
# Spyder project settings
.spyderproject
.idea/