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`,