start work on interactive part

This commit is contained in:
Nyx 2025-02-23 22:42:00 -06:00
parent 06f9df010a
commit b71a1cda17
2 changed files with 13 additions and 0 deletions

1
.gitignore vendored Normal file
View file

@ -0,0 +1 @@
.venv/

12
site/app.py Normal file
View file

@ -0,0 +1,12 @@
#!/usr/bin/env python
from flask import Flask
app = Flask(__name__)
@app.route('/')
def hello_world():
return render_template('index.html')
if __name__ == '__main__':
app.run(host="0.0.0.0", port=8080)