trying to add to vercel

This commit is contained in:
kaiyuran 2024-11-13 11:41:27 -05:00
parent 73c5ef97d1
commit 2132d87e0c
3 changed files with 18 additions and 0 deletions

11
.gitignore vendored
View file

@ -1 +1,12 @@
test.py test.py
idea/
.vscode/
__pycache__/
.tox/
.coverage
.coverage.*
htmlcov/
docs/_build/
dist/
venv/
.venv

View file

@ -0,0 +1,4 @@
# /requirements.txt
flask==3.0.0
# other required dependencies

3
vercel.json Normal file
View file

@ -0,0 +1,3 @@
{
"rewrites": [{ "source": "/(.*)", "destination": "app" }]
}