Skip to content

Commit

Permalink
Add startup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
bryanlyon committed Nov 27, 2023
1 parent 77d4022 commit d2958d5
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions startup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
import uvicorn

from main import app

if __name__ == "__main__":
uvicorn.run("main:app", host="127.0.0.1", port=8000, log_level="info")

0 comments on commit d2958d5

Please sign in to comment.