From 0aae59b0df966677bfaca815862656b1a784ee16 Mon Sep 17 00:00:00 2001 From: dan Date: Mon, 7 Jun 2021 00:49:52 -0400 Subject: [PATCH] Initial commit --- Procfile | 0 main.py | 8 ++++++++ requirements.txt | 14 ++++++++++++++ 3 files changed, 22 insertions(+) create mode 100644 Procfile create mode 100644 main.py create mode 100644 requirements.txt diff --git a/Procfile b/Procfile new file mode 100644 index 0000000..e69de29 diff --git a/main.py b/main.py new file mode 100644 index 0000000..85e525c --- /dev/null +++ b/main.py @@ -0,0 +1,8 @@ +from fastapi import FastAPI + +app = FastAPI() + + +@app.get('/') +async def root(): + return {"message": "Hello World"} \ No newline at end of file diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 0000000..459b8dc --- /dev/null +++ b/requirements.txt @@ -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