vishnu-coder commited on
Commit
fb77a2b
·
1 Parent(s): 9788e26

Updated vercel.json and local artifacts

Browse files
artifacts/sentiment_pipeline.joblib CHANGED
Binary files a/artifacts/sentiment_pipeline.joblib and b/artifacts/sentiment_pipeline.joblib differ
 
vercel.json CHANGED
@@ -1,14 +1,13 @@
1
  {
2
  "version": 2,
3
  "builds": [
4
- { "src": "app.py", "use": "@vercel/python" }
 
 
 
 
5
  ],
6
  "routes": [
7
- { "src": "/(.*)", "dest": "app.py" }
8
- ],
9
- "env": {
10
- "STREAMLIT_SERVER_HEADLESS": "true",
11
- "STREAMLIT_SERVER_ENABLECORS": "false",
12
- "STREAMLIT_SERVER_PORT": "8000"
13
- }
14
  }
 
1
  {
2
  "version": 2,
3
  "builds": [
4
+ {
5
+ "src": "app.py",
6
+ "use": "@vercel/static-build",
7
+ "config": { "distDir": "public" }
8
+ }
9
  ],
10
  "routes": [
11
+ { "src": "/(.*)", "dest": "/app.py" }
12
+ ]
 
 
 
 
 
13
  }