forked from DsThakurRawat/open-ev-code-handler
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.dockerignore
More file actions
58 lines (50 loc) · 663 Bytes
/
.dockerignore
File metadata and controls
58 lines (50 loc) · 663 Bytes
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 Artifacts
__pycache__/
*.py[cod]
*$py.class
*.so
.Python
*.egg-info/
dist/
build/
*.egg
MANIFEST
# Dashboard Build (Keep node_modules out of context, but allow source for builder)
static/dashboard/
dashboard/node_modules/
# Virtual Environment
venv/
.venv/
env/
# Testing & Coverage
tests/
.pytest_cache/
coverage.xml
.coverage
htmlcov/
pytest.ini
# Git
.git/
.gitignore
# Environment & Private Files
.env
.env.*
*.env.local
.history/
Roadmap.html
# Data Persistence (Ensures no local DB leaks into image)
data/
codelens.db
*.sqlite3
# OS Specific
.DS_Store
.DS_Store?
**/._*
**/.DS_Store
Thumbs.db
ehthumbs.db
# IDEs
.vscode/
.idea/
*.swp
*.swo