whisper-jax / run.sh
onlinework's picture
Update run.sh
377b824 verified
raw
history blame
249 Bytes
#!/bin/bash
# Replace placeholder in nginx configuration
cat nginx.conf | sed "s|API_URL|${API_URL:-http://127.0.0.1:7861}|g" > /etc/nginx/sites-available/default
# Start Nginx service
service nginx start
# Keep container running
sleep infinity