ComfyLaunch_01 / start.sh
multimodalart's picture
Update start.sh
0190a4f verified
raw
history blame
No virus
262 Bytes
#!/bin/bash
# Start Nginx in the background
nginx &
echo "Starting the main application: python server.py"
sed -i 's/^\(\s*\)port = find_free_port()/\1port = 39775/' /app/server/server.py
# Execute the Python server command
exec python /app/server/server.py