sshx / start.txt
xdragxt's picture
Rename start.sh to start.txt
bf28067 verified
raw
history blame contribute delete
178 Bytes
#!/bin/bash
# Start sshx in detached mode to avoid container shutdown
nohup sshx > /dev/null 2>&1 &
# Start the FastAPI server
exec uvicorn main:app --host 0.0.0.0 --port 7860