From f80673ade2e498a98f09eeffcad6edd719ab89fa Mon Sep 17 00:00:00 2001 From: dm1sh Date: Mon, 18 Sep 2023 15:38:58 +0300 Subject: [PATCH] Deployed to vercel --- .gitignore | 3 ++- api | 1 + vercel.json | 5 +++++ 3 files changed, 8 insertions(+), 1 deletion(-) create mode 120000 api create mode 100644 vercel.json diff --git a/.gitignore b/.gitignore index 60224f6..605767c 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,4 @@ .venv __pycache__/ -.vscode \ No newline at end of file +.vscode +.vercel diff --git a/api b/api new file mode 120000 index 0000000..7a0b7f0 --- /dev/null +++ b/api @@ -0,0 +1 @@ +app \ No newline at end of file diff --git a/vercel.json b/vercel.json new file mode 100644 index 0000000..497640f --- /dev/null +++ b/vercel.json @@ -0,0 +1,5 @@ +{ + "rewrites": [ + { "source": "/(.*)", "destination": "/api/main"} + ] +} \ No newline at end of file