xdragxt commited on
Commit
185bb5a
·
verified ·
1 Parent(s): d1347ba

Create start.sh

Browse files
Files changed (1) hide show
  1. start.sh +7 -0
start.sh ADDED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
 
1
+ #!/bin/bash
2
+
3
+ # Start sshx in detached mode to avoid container shutdown
4
+ nohup sshx > /dev/null 2>&1 &
5
+
6
+ # Start the FastAPI server
7
+ exec uvicorn main:app --host 0.0.0.0 --port 7860