Spaces:
Sleeping
Sleeping
fix: add .vercelignore to exclude heavy backend files from Vercel deployment
Browse files- .vercelignore +19 -0
.vercelignore
ADDED
|
@@ -0,0 +1,19 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Exclude heavy python backend files from Vercel deployment
|
| 2 |
+
app.py
|
| 3 |
+
train.py
|
| 4 |
+
requirements.txt
|
| 5 |
+
Dockerfile
|
| 6 |
+
*.pkl
|
| 7 |
+
*.csv
|
| 8 |
+
*.txt
|
| 9 |
+
__pycache__/
|
| 10 |
+
.system_generated/
|
| 11 |
+
.gemini/
|
| 12 |
+
scratch/
|
| 13 |
+
.agents/
|
| 14 |
+
.system/
|
| 15 |
+
*.log
|
| 16 |
+
postman_collection.json
|
| 17 |
+
FRONTEND_API_DOC.md
|
| 18 |
+
Doc.md
|
| 19 |
+
PUBLIC_DOC.md
|