From f2177438effc4bb9a79999780919bbfbdbaf6657 Mon Sep 17 00:00:00 2001 From: TylerCG <117808427+TylerCG@users.noreply.github.com> Date: Sun, 20 Apr 2025 18:16:12 -0400 Subject: [PATCH] test --- app/main.py | 4 ++-- {app/templates => templates}/index.html | 0 2 files changed, 2 insertions(+), 2 deletions(-) rename {app/templates => templates}/index.html (100%) diff --git a/app/main.py b/app/main.py index 07f2ac1..8101dad 100644 --- a/app/main.py +++ b/app/main.py @@ -9,8 +9,8 @@ import json app = FastAPI() -# app.mount("/static", StaticFiles(directory="app/static"), name="static") -# templates = Jinja2Templates(directory="app/templates") +app.mount("/static", StaticFiles(directory="app/static"), name="static") +templates = Jinja2Templates(directory="app/templates") # api diff --git a/app/templates/index.html b/templates/index.html similarity index 100% rename from app/templates/index.html rename to templates/index.html