-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathapi.py
More file actions
35 lines (25 loc) · 696 Bytes
/
api.py
File metadata and controls
35 lines (25 loc) · 696 Bytes
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
from starlette.responses import HTMLResponse
import uvicorn
from fastapi import FastAPI
from fastapi.middleware.cors import CORSMiddleware
import controllers.synchronous
import controllers.asynchronous
from middleware import add_thread_logging_middleware
app = FastAPI()
app.add_middleware(
CORSMiddleware,
allow_origins=["*"],
allow_credentials=True,
allow_methods=["*"],
allow_headers=["*"],
)
add_thread_logging_middleware(app)
app.include_router(controllers.synchronous.router)
app.include_router(controllers.asynchronous.router)
if __name__ == '__main__':
uvicorn.run(
'api:app',
reload=True,
host='0.0.0.0',
port=4242
)