[Django]-Running ./manage.py via supervisor

2๐Ÿ‘

โœ…

If anyone else has this problem, supervisor does not work with ./manage.py for me but it works just fine with python manage.py

I changed ./manage.py to python manage.py and everything works.

PS: I did do chmod +x manage.py before trying ./manage.py for people who might think that maybe I didnโ€™t have the permissions in place.

๐Ÿ‘คJonathan

1๐Ÿ‘

For that to work, the path /var/www/my_venv should have the manage.py script.

๐Ÿ‘คmanojlds

Leave a comment