diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 0000000..3c00212 --- /dev/null +++ b/requirements.txt @@ -0,0 +1,2 @@ +Quart==0.6.0 +asyncpg==0.16.0 diff --git a/run.py b/run.py new file mode 100644 index 0000000..64f5759 --- /dev/null +++ b/run.py @@ -0,0 +1,12 @@ +import logging + +import asyncpg +from quart import Quart, g + +logging.basicConfig(level=logging.INFO) +app = Quart(__name__) + + +@app.route('/') +async def index(): + return 'hai'