likable / start.sh
jens-l's picture
refactor: cleanup and update README.md with new features and usage instructions
f0ca218
raw
history blame contribute delete
241 Bytes
#!/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