diff --git a/backend/run.py b/backend/run.py new file mode 100644 index 0000000..84e2eb3 --- /dev/null +++ b/backend/run.py @@ -0,0 +1,10 @@ +"""Entry point for the AI Worker Platform backend.""" +import uvicorn + +if __name__ == "__main__": + uvicorn.run( + "app.main:app", + host="0.0.0.0", + port=8000, + reload=True, + )