Spaces:
Running
Running
File size: 237 Bytes
335bfb5 6843f36 8c66d1a b5356c5 77bf495 fca48a0 2d6bf75 fca48a0 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
#!/bin/bash
# Fail if any of the commands below fail.
set -e
mkdir -p /data
sudo chmod 777 /data
lilac hf-docker-start
gunicorn lilac.server:app \
--bind 0.0.0.0:5432 \
--preload -k uvicorn.workers.UvicornWorker \
--timeout 120
|