feat(backend): set openAPI title and version

This commit is contained in:
Alex Wellnitz 2024-09-21 10:06:18 +02:00
parent a4cc2c774f
commit 3e249a47b1

View File

@ -20,7 +20,10 @@ logging.basicConfig(level=logging.INFO)
# simc_path = os.path.join('tests', 'simc')
simc_path = "./"
app = FastAPI()
app = FastAPI(
title = "SimC-Free Backend",
version="0.1.0",
)
origins = [
"http://localhost",