here comes the refactor!

This commit is contained in:
cool.gitter.choco
2025-02-03 18:29:37 -06:00
parent 35d727c2f5
commit 6fe6a31fd1
12 changed files with 2521 additions and 2125 deletions

7
app.py
View File

@@ -46,7 +46,12 @@ def create_app():
# Serve frontend
@app.route('/')
def serve_index():
return render_template('index.html')
return render_template('main.html')
# Add this new route for config page
@app.route('/config')
def serve_config():
return render_template('config.html')
@app.route('/static/<path:path>')
def serve_static(path):