diff --git a/index.py b/app.py similarity index 100% rename from index.py rename to app.py diff --git a/vercel.json b/vercel.json new file mode 100644 index 0000000..6a89c1f --- /dev/null +++ b/vercel.json @@ -0,0 +1,15 @@ +{ + "version": 2, + "builds": [ + { + "src": "./app.py", + "use": "@vercel/python" + } + ], + "routes": [ + { + "src": "/(.*)", + "dest": "/" + } + ] +} \ No newline at end of file