From b4140460014d1fc134df9127600f6da2346376e3 Mon Sep 17 00:00:00 2001 From: Elizabeth Hunt Date: Tue, 20 Aug 2024 17:34:18 -0700 Subject: init commit with base ECS and Network System --- kennel/app.py | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 kennel/app.py (limited to 'kennel/app.py') diff --git a/kennel/app.py b/kennel/app.py new file mode 100644 index 0000000..98a0448 --- /dev/null +++ b/kennel/app.py @@ -0,0 +1,13 @@ +import structlog +from fastapi import FastAPI +from fastapi.templating import Jinja2Templates + +app = FastAPI( + servers = [ + {"url": "https://kennel.hatecomputers.club", "description": "prod"} + ] +) + +logger = structlog.get_logger() + +templates = Jinja2Templates(directory="templates") -- cgit v1.3