-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy path.gitignore
60 lines (46 loc) · 825 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
59
# Py artefacts
*.pyc
__pycache__
# Py env
**/env/
**/.env/
**/venv/
**/.venv/
# IDE
.vscode
.project
.pydevproject
**/.settings/
**/base - Django2.txt
# Ignore secrets
**/*.token
# Disallow prod env
**/env_vars.*
# Allow example secrets
!docker/**/db/example.git.token
# Dumps
**/*.backup
**/dump.rdb
# Deployment artefacts
CodeListLibrary_project/media/*
CodeListLibrary_project/staticroot/*
# Testing artefacts
**/.pytest_cache/
**/tests/**/allure*/
# Docker
**/cl_log/
**/docker/**/backup/
**/docker/development/db/*.sql
**/docker/development/db/postgresql.conf
**/docker/CodeListLibrary_project
# Engagelens
**/engagelens/.env
# Allow docker env directory
!**/docker/.env/
!**/docker/**/env/
# Platform / OS files
.idea
.DS_Stores
# Misc. files
docs/~$plication Guide.docx
CodeListLibrary_project/debug.log