Spaces:
Running
Running
File size: 241 Bytes
66a32ca 3620617 1462647 66a32ca 3620617 1a407a0 f0ca218 |
1 2 3 4 5 6 7 8 9 10 |
#!/bin/bash
# Start nginx with our configuration
echo "Starting nginx..."
nginx -c /app/nginx.conf &
# Start the main Gradio app
echo "Starting Gradio app on port 7862..."
exec python -u -m src.app --server-port 7862 --server-name 0.0.0.0
|