Spaces:
Runtime error
Runtime error
File size: 200 Bytes
96e9c2b |
1 2 3 4 5 6 7 8 9 10 11 |
#!/bin/bash
# Fail if any of the commands below fail.
set -e
lilac hf-docker-start
gunicorn lilac.server:app \
--bind 0.0.0.0:5432 \
--preload -k uvicorn.workers.UvicornWorker \
--timeout 120
|