websoft9/docker/apphub/config/supervisord.conf
qiaofeng1227 3bf1b05422 apphub
2023-10-13 17:37:49 +08:00

12 lines
420 B
Plaintext

[supervisord]
nodaemon=false
[program:apphub]
command=uvicorn src.main:app --host 0.0.0.0 --port 8080 --log-level error
autostart=false
directory=/websoft9/apphub
[program:apphubdev]
command=/bin/bash -c '[ -z "$(ls -A /websoft9/apphub-dev)" ] && cp -r /websoft9/apphub/* /websoft9/apphub-dev && uvicorn src.main:app --reload --host 0.0.0.0 --port 8080 --log-level error'
autostart=false
directory=/websoft9/apphub-dev