mayureshagashe2105 commited on
Commit
ef4b7e8
·
1 Parent(s): 160517b

Add vercel deployment configs

Browse files
Files changed (2) hide show
  1. app.py +1 -0
  2. vercel.json +4 -0
app.py CHANGED
@@ -0,0 +1 @@
 
 
1
+ from backend import app
vercel.json ADDED
@@ -0,0 +1,4 @@
 
 
 
 
 
1
+ {
2
+ "builds": [{ "src": "app.py", "use": "@vercel/python" }],
3
+ "routes": [{ "src": "/(.*)", "dest": "app.py" }]
4
+ }