refactor(chalice): enforce UTC TZ
refactor(crons): enforce UTC TZ
refactor(alerts): enforce UTC TZ
(cherry picked from commit 884f3499ef)
4 lines
127 B
Bash
Executable file
4 lines
127 B
Bash
Executable file
#!/bin/sh
|
|
export TZ=UTC
|
|
export ASSIST_KEY=ignore
|
|
uvicorn app:app --host 0.0.0.0 --port 8888 --log-level ${S_LOGLEVEL:-warning}
|