7 lines
190 B
Bash
Executable file
7 lines
190 B
Bash
Executable file
#!/bin/sh
|
|
export TZ=UTC
|
|
export ASSIST_KEY=ignore
|
|
export CH_POOL=false
|
|
sh env_vars.sh
|
|
source /tmp/.env.override
|
|
uvicorn app:app --host 0.0.0.0 --port 8888 --log-level ${S_LOGLEVEL:-warning}
|