vishnu-coder commited on
Commit
fdacebe
·
1 Parent(s): 26c905c

Added vercel.json for Vercel deployment

Browse files
Files changed (1) hide show
  1. vercel.json +14 -0
vercel.json ADDED
@@ -0,0 +1,14 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "version": 2,
3
+ "builds": [
4
+ { "src": "app/app.py", "use": "@vercel/python" }
5
+ ],
6
+ "routes": [
7
+ { "src": "/(.*)", "dest": "app/app.py" }
8
+ ],
9
+ "env": {
10
+ "STREAMLIT_SERVER_HEADLESS": "true",
11
+ "STREAMLIT_SERVER_ENABLECORS": "false",
12
+ "STREAMLIT_SERVER_PORT": "8000"
13
+ }
14
+ }