feat: super basic flask app

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

2
run.sh Executable file
View file

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

7
src/main.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>"