From 8a94de44c0d0e5769e584891fa2e91883d3d2fd6 Mon Sep 17 00:00:00 2001 From: warren yun Date: Tue, 17 Sep 2024 20:01:38 -0400 Subject: [PATCH] playing around with styling and items --- Makefile | 2 +- goathacks/__init__.py | 4 ++++ 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 287f2b5..573975e 100644 --- a/Makefile +++ b/Makefile @@ -32,7 +32,7 @@ daemon: @echo "--- STARTING UWSGI DAEMON ---" @echo "" @echo "" - source .venv/bin/activate && flask run + source .venv/bin/activate && flask --debug run @echo "" @echo "" @echo "--- STARTING UWSGI DAEMON ---" diff --git a/goathacks/__init__.py b/goathacks/__init__.py index 1939b46..461e3c5 100644 --- a/goathacks/__init__.py +++ b/goathacks/__init__.py @@ -81,6 +81,10 @@ def create_app(): @app.route("/index.html") def index(): return render_template("home/index.html") + + @app.route("/index2.html") + def index2(): + return render_template("home/index2.html") # homepage assets @app.route("/assets/")