diff --git a/Procfile b/Procfile new file mode 100644 index 0000000000000000000000000000000000000000..66e90bb4ed13553a8d0fa9570f7c451dced7894d --- /dev/null +++ b/Procfile @@ -0,0 +1 @@ +web: uvicorn main:app --host 0.0.0.0 --port 8080 \ No newline at end of file diff --git a/main.py b/main.py index 7e7999ec7a0cb3414f54f3085b9432dbc14fc5d8..d4771bfac2b4d1ef97e1812d403599a1a2a46796 100644 --- a/main.py +++ b/main.py @@ -4,4 +4,6 @@ app = FastAPI() @app.get("/") async def root(): - return {"greeting":"Hallo MSA!"} \ No newline at end of file + return {"greeting":"Hallo MSA!"} + +# uvicorn main:app --reload \ No newline at end of file