zinoubm commited on
Commit
7ed4a59
·
1 Parent(s): 3b1cd19

fixing typo vercel.json

Browse files
Files changed (1) hide show
  1. vercel.json +15 -0
vercel.json ADDED
@@ -0,0 +1,15 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "devCommand": "uvicorn main:app --host 0.0.0.0 --port 3000",
3
+ "builds": [
4
+ {
5
+ "src": "app.py",
6
+ "use": "@vercel/python"
7
+ }
8
+ ],
9
+ "routes": [
10
+ {
11
+ "src": "/(.*)",
12
+ "dest": "app.py"
13
+ }
14
+ ]
15
+ }