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-10 16:20:50 +08:00
|
|
|
command=uvicorn src.main:app --host 0.0.0.0 --port 8080 --log-level error
|
2023-10-13 17:37:49 +08:00
|
|
|
autostart=false
|
2023-10-10 16:20:50 +08:00
|
|
|
directory=/websoft9/apphub
|
|
|
|
|
|
|
|
[program:apphubdev]
|
2023-10-12 10:47:22 +08:00
|
|
|
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'
|
2023-10-13 17:37:49 +08:00
|
|
|
autostart=false
|
2023-10-12 10:47:22 +08:00
|
|
|
directory=/websoft9/apphub-dev
|