From 3e249a47b18f97fe2b342a195bb8299b52b64bd2 Mon Sep 17 00:00:00 2001 From: Alex Wellnitz Date: Sat, 21 Sep 2024 10:06:18 +0200 Subject: [PATCH] feat(backend): set openAPI title and version --- backend/main.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/backend/main.py b/backend/main.py index 89c2fe5..09ebe1d 100644 --- a/backend/main.py +++ b/backend/main.py @@ -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",