-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.py
73 lines (64 loc) · 2.26 KB
/
main.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
from dotenv import load_dotenv, find_dotenv
from fastapi import FastAPI
import uvicorn
from fastapi.middleware.cors import CORSMiddleware
import ana
import os
import logging
import asyncio
logger = logging.getLogger("Main")
load_dotenv(find_dotenv())
app = FastAPI()
app.include_router(ana.router)
@app.get("/")
async def read_main():
return {"msg": "LLM-KG-API"}
allow_origins= [
"https://localhost:5173",
"http://localhost:5173",
"http://localhost:5173/",
"https://localhost:5173/",
"localhost:5173",
"localhost:5173/",
"https://localhost:5173",
"https://172.18.0.2:5173",
"https://172.18.0.1:5173",
"http://172.18.0.1:5173",
"172.18.0.1:5173",
"https://172.18.0.1",
"https://172.18.0.1:*",
"https://172.18.0.1:55554",
"https://172.18.0.1:55558",
"https://172.18.0.4:5173",
"https://172.18.0.3:5173",
"http://127.0.0.1:5173",
"https://127.0.0.1:5173",
"127.0.0.1:5173",
"http://0.0.0.0:5173",
"0.0.0.0:5173",
"http://0.0.0.0:5173",
"http://127.0.0.1:3000",
"localhost:3000",
"http://localhost:3000",
"https://0.0.0.0:5173",
]
if os.getenv("ENV") == "development":
logger.warning("Establishing CORS for development ")
app.add_middleware(
CORSMiddleware,
allow_origins=allow_origins,
allow_credentials=True,
allow_methods=["*"],
allow_headers=["*"],
)
else:
app.add_middleware(
CORSMiddleware,
allow_origins=allow_origins,
allow_origin_regex="^https:\/\/(.*\.)?tryrecess\.vercel\.app$",
allow_credentials=True,
allow_methods=["*"],
allow_headers=["*"],
)
if __name__ == "__main__":
uvicorn.run(app, host="0.0.0.0")