Answers for "Running django custom management commands with supervisord"

1

Running django custom management commands with supervisord

#!/bin/bash

beanstalkd -l 127.0.0.1 -p 11300
source /home/mf/virtualenvs/env/bin/activate    
python manage.py command1
python manage.py command2
Posted by: Guest on June-23-2021
1

Running django custom management commands with supervisord

[program:my_app]
command = bash /path/to/app/init.sh
directory = /path/to/app/
user = ubuntu
autostart=true
autorestart=true
Posted by: Guest on June-23-2021
0

Running django custom management commands with supervisord

#!/bin/bash

exec beanstalkd -l 127.0.0.1 -p 11300
Posted by: Guest on June-23-2021

Code answers related to "Running django custom management commands with supervisord"

Browse Popular Code Answers by Language