add startup script (to make it runnable with python3 -m)

This commit is contained in:
magmaus3 2024-09-07 22:30:31 +02:00
parent 7cc461f1b8
commit 830fb55352
Signed by: magmaus3
GPG key ID: 84BC6F564FD017BE

View file

@ -0,0 +1,4 @@
import uvicorn
if __name__ == "__main__":
uvicorn.run("main:app", port=6872, log_level="info")