Updates for GoatHacks 2025 #34

Merged
Muirrum merged 18 commits from 2025 into master 2024-10-31 13:37:25 -04:00
2 changed files with 5 additions and 1 deletions
Showing only changes of commit 16f08f7750 - Show all commits

View file

@ -32,7 +32,7 @@ daemon:
@echo "--- STARTING UWSGI DAEMON ---" @echo "--- STARTING UWSGI DAEMON ---"
@echo "" @echo ""
@echo "" @echo ""
source .venv/bin/activate && flask run source .venv/bin/activate && flask --debug run
@echo "" @echo ""
@echo "" @echo ""
@echo "--- STARTING UWSGI DAEMON ---" @echo "--- STARTING UWSGI DAEMON ---"

View file

@ -81,6 +81,10 @@ def create_app():
@app.route("/index.html") @app.route("/index.html")
def index(): def index():
return render_template("home/index.html") return render_template("home/index.html")
@app.route("/index2.html")
def index2():
return render_template("home/index2.html")
# homepage assets # homepage assets
@app.route("/assets/<path:path>") @app.route("/assets/<path:path>")