Spaces:
Runtime error
Runtime error
Mark Duppenthaler
commited on
Commit
·
82be0e1
1
Parent(s):
1923610
Docker ignore
Browse files- .dockerignore +96 -0
- .gitignore +0 -3
.dockerignore
ADDED
@@ -0,0 +1,96 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Models directory - downloaded at runtime
|
2 |
+
server/models/
|
3 |
+
**/models/
|
4 |
+
|
5 |
+
# Node modules - installed during build
|
6 |
+
frontend/node_modules/
|
7 |
+
**/node_modules/
|
8 |
+
|
9 |
+
# Frontend build artifacts - built during Docker build
|
10 |
+
frontend/dist/
|
11 |
+
frontend/build/
|
12 |
+
|
13 |
+
# Development files
|
14 |
+
.git/
|
15 |
+
.gitignore
|
16 |
+
*.md
|
17 |
+
README*
|
18 |
+
|
19 |
+
# IDE and editor files
|
20 |
+
.vscode/
|
21 |
+
.idea/
|
22 |
+
*.swp
|
23 |
+
*.swo
|
24 |
+
*~
|
25 |
+
|
26 |
+
# OS generated files
|
27 |
+
.DS_Store
|
28 |
+
.DS_Store?
|
29 |
+
._*
|
30 |
+
.Spotlight-V100
|
31 |
+
.Trashes
|
32 |
+
ehthumbs.db
|
33 |
+
Thumbs.db
|
34 |
+
|
35 |
+
# Python cache and artifacts
|
36 |
+
__pycache__/
|
37 |
+
*.py[cod]
|
38 |
+
*$py.class
|
39 |
+
*.so
|
40 |
+
.Python
|
41 |
+
build/
|
42 |
+
develop-eggs/
|
43 |
+
dist/
|
44 |
+
downloads/
|
45 |
+
eggs/
|
46 |
+
.eggs/
|
47 |
+
lib/
|
48 |
+
lib64/
|
49 |
+
parts/
|
50 |
+
sdist/
|
51 |
+
var/
|
52 |
+
wheels/
|
53 |
+
*.egg-info/
|
54 |
+
.installed.cfg
|
55 |
+
*.egg
|
56 |
+
|
57 |
+
# Virtual environments
|
58 |
+
venv/
|
59 |
+
env/
|
60 |
+
ENV/
|
61 |
+
|
62 |
+
# Jupyter Notebook
|
63 |
+
.ipynb_checkpoints
|
64 |
+
|
65 |
+
# pytest
|
66 |
+
.pytest_cache/
|
67 |
+
|
68 |
+
# Coverage reports
|
69 |
+
htmlcov/
|
70 |
+
.tox/
|
71 |
+
.coverage
|
72 |
+
.coverage.*
|
73 |
+
.cache
|
74 |
+
nosetests.xml
|
75 |
+
coverage.xml
|
76 |
+
*.cover
|
77 |
+
.hypothesis/
|
78 |
+
|
79 |
+
# Logs
|
80 |
+
*.log
|
81 |
+
logs/
|
82 |
+
|
83 |
+
# Runtime data
|
84 |
+
pids
|
85 |
+
*.pid
|
86 |
+
*.seed
|
87 |
+
*.pid.lock
|
88 |
+
|
89 |
+
# Docker files (optional - uncomment if you don't want to include docker files)
|
90 |
+
# Dockerfile*
|
91 |
+
# docker-compose*
|
92 |
+
# .dockerignore
|
93 |
+
|
94 |
+
# Temporary files
|
95 |
+
tmp/
|
96 |
+
temp/
|
.gitignore
CHANGED
@@ -144,9 +144,6 @@ dmypy.json
|
|
144 |
ehthumbs.db
|
145 |
Thumbs.db
|
146 |
|
147 |
-
# Docker
|
148 |
-
.dockerignore
|
149 |
-
|
150 |
# Logs
|
151 |
*.log
|
152 |
logs/
|
|
|
144 |
ehthumbs.db
|
145 |
Thumbs.db
|
146 |
|
|
|
|
|
|
|
147 |
# Logs
|
148 |
*.log
|
149 |
logs/
|