websoft9/docker/apphub/config/supervisord.conf

19 lines
416 B
Plaintext
Raw Normal View History

2023-04-04 09:22:26 +08:00
[supervisord]
nodaemon=false
2023-09-19 14:32:20 +08:00
2023-09-18 17:13:15 +08:00
[program:apphub]
2023-10-20 16:54:46 +08:00
command=uvicorn src.main:app --host 0.0.0.0 --port 8080
2023-10-13 17:37:49 +08:00
autostart=false
2023-10-10 16:20:50 +08:00
directory=/websoft9/apphub
2023-10-20 16:54:46 +08:00
stdout_logfile=/dev/stdout
stdout_logfile_maxbytes=0
stderr_logfile=/dev/stderr
stderr_logfile_maxbytes=0
2023-10-10 16:20:50 +08:00
[program:apphubdev]
2023-10-18 15:25:03 +08:00
command=/developer.sh
2023-10-13 17:37:49 +08:00
autostart=false
2023-10-18 15:25:03 +08:00
stdout_logfile=/dev/stdout
2023-10-20 16:54:46 +08:00
stdout_logfile_maxbytes=0
stderr_logfile=/dev/stderr
stderr_logfile_maxbytes=0