Skip to content

Commit 5c72f91

Browse files
committed
Deploy on vercel
1 parent 4e4ea2d commit 5c72f91

File tree

2 files changed

+15
-0
lines changed

2 files changed

+15
-0
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
.venv
22
venv
33
__pycache__
4+
.vercel

vercel.json

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
{
2+
"builds": [
3+
{
4+
"src": "/api/v1/main.py",
5+
"use": "@vercel/python"
6+
}
7+
],
8+
"routes": [
9+
{
10+
"src": "/(.*)",
11+
"dest": "api/v1/main.py"
12+
}
13+
]
14+
}

0 commit comments

Comments
 (0)