From f3a15eb9562c306217a55cc2d045e08c6bcff246 Mon Sep 17 00:00:00 2001 From: Kentai Radiquum Date: Wed, 15 May 2024 19:40:18 +0500 Subject: [PATCH] feat(deployment): allow deploy to vercel --- backend/main.py | 5 +++++ backend/vercel.json | 14 ++++++++++++++ frontend/app/api/config.js | 4 ++++ 3 files changed, 23 insertions(+) create mode 100644 backend/vercel.json diff --git a/backend/main.py b/backend/main.py index 3a43338..3c5194b 100644 --- a/backend/main.py +++ b/backend/main.py @@ -1,3 +1,5 @@ +import os + import uvicorn from fastapi import FastAPI from modules import proxy @@ -38,6 +40,9 @@ TAGS = [ PREFIX = "/v1" +if os.getenv("API_PREFIX"): + PREFIX = os.getenv("API_PREFIX") + app = FastAPI( openapi_tags=TAGS, title="AniX API", diff --git a/backend/vercel.json b/backend/vercel.json new file mode 100644 index 0000000..70c1e96 --- /dev/null +++ b/backend/vercel.json @@ -0,0 +1,14 @@ +{ + "builds": [ + { + "src": "main.py", + "use": "@vercel/python" + } + ], + "routes": [ + { + "src": "/(.*)", + "dest": "main.py" + } + ] +} diff --git a/frontend/app/api/config.js b/frontend/app/api/config.js index 12a7d2a..7eb8ada 100644 --- a/frontend/app/api/config.js +++ b/frontend/app/api/config.js @@ -1,5 +1,9 @@ export let API_URL = "/api/v1"; +if (process.env.API_URL) { + API_URL = process.env.API_URL; +} + export const endpoints = { index: { last: `${API_URL}/index/last`,