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