first commit
This commit is contained in:
41
main.py
Normal file
41
main.py
Normal file
@@ -0,0 +1,41 @@
|
||||
from fastapi import FastAPI
|
||||
from app.routers import main, delivery, confirm
|
||||
from fastapi.middleware.cors import CORSMiddleware
|
||||
|
||||
|
||||
app = FastAPI()
|
||||
|
||||
|
||||
app.include_router(main.router)
|
||||
app.include_router(delivery.router)
|
||||
app.include_router(confirm.router)
|
||||
|
||||
origins = [
|
||||
"http://localhost:9000",
|
||||
"https://localhost:9513",
|
||||
"http://localhost:9514",
|
||||
"http://localhost:9512",
|
||||
"http://localhost:9511",
|
||||
"http://192.168.1.204:9000",
|
||||
"http://192.168.1.204:9513",
|
||||
"http://192.168.1.204:9514",
|
||||
"http://192.168.1.204:9512",
|
||||
"http://192.168.1.204:9511",
|
||||
]
|
||||
|
||||
|
||||
app.add_middleware(
|
||||
CORSMiddleware,
|
||||
allow_origins=origins,
|
||||
allow_credentials=True,
|
||||
allow_methods=["*"],
|
||||
allow_headers=["*"],
|
||||
)
|
||||
|
||||
|
||||
|
||||
|
||||
@app.get("/")
|
||||
def read_root():
|
||||
return {"Status": "Playground is online"}
|
||||
|
||||
Reference in New Issue
Block a user