feat: super basic flask app

This commit is contained in:
Christoph J. Scherr 2025-02-07 14:17:17 +01:00
parent e37e329385
commit 7a5bebb9ff
Signed by: PlexSheep
GPG Key ID: 9EB784BB202BB7BB
2 changed files with 9 additions and 0 deletions

7
flaskex/app.py Normal file
View File

@ -0,0 +1,7 @@
from flask import Flask
app = Flask(__name__)
@app.route("/")
def hello_world():
return "<p>Hello, World!</p>"

2
run.sh Executable file
View File

@ -0,0 +1,2 @@
#!/bin/bash
flask --app flaskex/app run