aboutsummaryrefslogtreecommitdiff
path: root/run.py
diff options
context:
space:
mode:
authorMax Nanis2026-02-19 02:43:23 -0500
committerMax Nanis2026-02-19 02:43:23 -0500
commitf0f96f83c2630e890a2cbcab53f77fd4c37e1684 (patch)
treec6d2cb092e76bf5d499e0ea9949508d6b22164fd /run.py
parent3eaa56f0306ead818f64c3d99fc6d230d9b970a4 (diff)
downloadamt-jb-master.tar.gz
amt-jb-master.zip
Models, Project files, some pytests, requirements.. etcHEADmaster
Diffstat (limited to 'run.py')
-rw-r--r--run.py6
1 files changed, 6 insertions, 0 deletions
diff --git a/run.py b/run.py
new file mode 100644
index 0000000..ebf2e4b
--- /dev/null
+++ b/run.py
@@ -0,0 +1,6 @@
+import uvicorn
+
+from jb.main import app
+
+if __name__ == "__main__":
+ uvicorn.run(app, host="127.0.0.1", port=8081, timeout_keep_alive=180)