Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
xdragxt
/
sshx
like
0
Building
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
xdragxt
commited on
13 days ago
Commit
185bb5a
·
verified
·
1 Parent(s):
d1347ba
Create start.sh
Browse files
Files changed (1)
hide
show
start.sh
+7
-0
start.sh
ADDED
Viewed
@@ -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