[supervisord] nodaemon=true logfile=/dev/stdout logfile_maxbytes=0 [supervisorctl] serverurl=unix:///tmp/supervisor.sock [unix_http_server] file=/tmp/supervisor.sock [program:django] # To run migrations manually: docker compose exec web python manage.py migrate command=gunicorn werkout_api.wsgi:application --bind 0.0.0.0:8000 --workers 3 directory=/code autostart=true autorestart=true startsecs=10 stdout_logfile=/dev/stdout stdout_logfile_maxbytes=0 stderr_logfile=/dev/stderr stderr_logfile_maxbytes=0 [program:nextjs] command=npx next start -p 3000 -H 0.0.0.0 directory=/code/werkout-frontend autostart=true autorestart=true stdout_logfile=/dev/stdout stdout_logfile_maxbytes=0 stderr_logfile=/dev/stderr stderr_logfile_maxbytes=0 [program:celery] command=celery -A werkout_api worker -l info directory=/code autostart=true autorestart=true startsecs=10 stdout_logfile=/dev/stdout stdout_logfile_maxbytes=0 stderr_logfile=/dev/stderr stderr_logfile_maxbytes=0