-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.py
50 lines (40 loc) · 1.54 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
#
# Copyright (C) 2021
#
# Author: hacktribe <hacktribe.org>
#
from app.core.config import settings
from app.core.events import create_start_app_handler, create_stop_app_handler
from app.core.http_error import http_error_handler
from app.routers import router as api_router
from app.core.validation_error import http422_error_handler
from fastapi.applications import FastAPI
from fastapi.exceptions import RequestValidationError
from starlette.exceptions import HTTPException
from starlette.middleware.cors import CORSMiddleware
def get_application() -> FastAPI:
application = FastAPI(
title=settings.project_name,
debug=settings.debug,
docs_url=settings.docs_url,
openapi_url=settings.openapi_url,
redoc_url=settings.redoc_url,
version=settings.version,
)
application.add_middleware(
CORSMiddleware,
allow_origins=settings.allowed_hosts or ["*"],
allow_credentials=True,
allow_methods=["*"],
allow_headers=["*"],
)
application.add_event_handler("startup",
create_start_app_handler(application))
application.add_event_handler("shutdown",
create_stop_app_handler(application))
application.add_exception_handler(HTTPException, http_error_handler)
application.add_exception_handler(RequestValidationError,
http422_error_handler)
application.include_router(api_router, prefix=settings.api_prefix)
return application
app = get_application()