Skip to content

Commit d2958d5

Browse files
committed
Add startup.py
1 parent 77d4022 commit d2958d5

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

startup.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
import uvicorn
2+
3+
from main import app
4+
5+
if __name__ == "__main__":
6+
uvicorn.run("main:app", host="127.0.0.1", port=8000, log_level="info")

0 commit comments

Comments
 (0)