websoft9/appmanage/config/supervisord.conf

13 lines
268 B
Text
Raw Normal View History

2023-04-04 01:22:26 +00:00
[supervisord]
nodaemon=false
[program:appmanage]
2023-04-04 01:41:17 +00:00
command=uvicorn main:get_app --host 0.0.0.0 --port 5000 --log-level info
2023-04-04 01:22:26 +00:00
autostart=true
2023-04-04 01:41:17 +00:00
directory=/usr/src/app
2023-04-04 01:22:26 +00:00
[program:job]
2023-04-04 08:45:42 +00:00
command=rq worker --url redis://websoft9-redis:6379/0
2023-04-04 01:22:26 +00:00
autostart=true
2023-04-04 01:41:17 +00:00
directory=/usr/src/app