Answers for "no python application found, check your startup logs for errors"

0

no python application found, check your startup logs for errors

I have solved this

in my original command line did not include full path to the wsgi.py file to run uWSGI

uwsgi --http :8000 --chdir /srv/www/databankinfo.com/projectdatabank/ --wsgi-file wsgi.py
to this

uwsgi --http :8000 --chdir /srv/www/databankinfo.com/projectdatabank/ --wsgi-file full/path/wsgi.py
and it worked
Posted by: Guest on March-11-2021

Code answers related to "no python application found, check your startup logs for errors"

Python Answers by Framework

Browse Popular Code Answers by Language