Spaces:
Running
Running
File size: 274 Bytes
5332bb0 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 | #!/bin/bash
set -e
# Copy HF settings (with accounts, no local proxy)
if [ -f /app/settings-hf.json ]; then
cp /app/settings-hf.json /app/settings.json
fi
# Start virtual display
Xvfb :99 -screen 0 1920x1080x24 -ac &
sleep 1
# Start the API server
exec python main.py |