mirror of
https://github.com/DarrylNixon/CrowdTLS-server.git
synced 2024-09-22 18:19:43 -07:00
22 lines
622 B
Python
22 lines
622 B
Python
from fastapi import FastAPI
|
|
from fastapi.middleware.cors import CORSMiddleware
|
|
|
|
from crowdtls.api.v1.api import app as api_v1_app
|
|
from crowdtls.db import create_db_and_tables
|
|
from crowdtls.logs import logger
|
|
|
|
app = FastAPI()
|
|
|
|
app.add_middleware(CORSMiddleware, allow_origins=["*"], allow_methods=["POST"], allow_headers=["*"])
|
|
|
|
app.include_router(api_v1_app, prefix="/api/v1")
|
|
|
|
|
|
@app.on_event("startup")
|
|
async def startup_event():
|
|
logger.info("Creating database and tables")
|
|
try:
|
|
await create_db_and_tables()
|
|
except Exception:
|
|
logger.error("Failed to create database and tables")
|
|
raise
|