File size: 244 Bytes
4b03eed
0c4dbe2
 
 
 
 
 
 
 
4b03eed
1
2
3
4
5
6
7
8
9
10
11
#!/bin/bash
if [ -n "$REMOTE_REDIS_WS_URL" ]; then
    echo "Connecting to remote Redis via WebSocket Proxy..."
    python local_ws_proxy.py &
else
    echo "Starting local Redis server..."
    redis-server --daemonize yes
fi

python hf_app.py