Added basic starter app
parent
5806c696e3
commit
12c1a2d206
5
Makefile
5
Makefile
|
@ -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
|
||||
|
|
|
@ -0,0 +1,9 @@
|
|||
from quart import Quart
|
||||
|
||||
app = Quart("jos")
|
||||
|
||||
@app.route("/")
|
||||
async def hello():
|
||||
return "hello"
|
||||
|
||||
app.run()
|
Reference in New Issue