Initial commit

This commit is contained in:
dan
2021-06-07 00:49:52 -04:00
commit 0aae59b0df
3 changed files with 22 additions and 0 deletions

0
Procfile Normal file
View File

8
main.py Normal file
View File

@@ -0,0 +1,8 @@
from fastapi import FastAPI
app = FastAPI()
@app.get('/')
async def root():
return {"message": "Hello World"}

14
requirements.txt Normal file
View File

@@ -0,0 +1,14 @@
asgiref==3.3.4
click==8.0.1
colorama==0.4.4
fastapi==0.65.1
h11==0.12.0
httptools==0.2.0
pydantic==1.8.2
python-dotenv==0.17.1
PyYAML==5.4.1
starlette==0.14.2
typing-extensions==3.10.0.0
uvicorn==0.14.0
watchgod==0.7
websockets==9.1