Added basic starter app

pull/17/head^2
Jef Roosens 2021-05-18 11:45:44 +02:00
parent 5806c696e3
commit 12c1a2d206
Signed by: Jef Roosens
GPG Key ID: B580B976584B5F30
2 changed files with 12 additions and 2 deletions

View File

@ -49,6 +49,7 @@ clean:
.PHONY: clean
# Run the Flask server
# TODO
## Starting the server
### Run the Quart server
run: venv
@ '$(VENV)'/bin/python app

View File

@ -0,0 +1,9 @@
from quart import Quart
app = Quart("jos")
@app.route("/")
async def hello():
return "hello"
app.run()