feat(deployment): allow deploy to vercel

This commit is contained in:
Kentai Radiquum 2024-05-15 19:40:18 +05:00
parent f4e340b21d
commit f3a15eb956
Signed by: Radiquum
GPG key ID: 858E8EE696525EED
3 changed files with 23 additions and 0 deletions

14
backend/vercel.json Normal file
View file

@ -0,0 +1,14 @@
{
"builds": [
{
"src": "main.py",
"use": "@vercel/python"
}
],
"routes": [
{
"src": "/(.*)",
"dest": "main.py"
}
]
}