Answer the question
In order to leave comments, you need to log in
How to deal with running uwsgi?
I enter this line in the terminal:
$ uwsgi --http :8080 --home /home/darya/gorgeousrouteProject/gorgeousrouteEnv --chdir /home/darya/gorgeousrouteProject/gorgeousrouteApp -w wsgi.py
Answer the question
In order to leave comments, you need to log in
sudo apt-get install uwsgi uwsgi-plugin-python3
virtualenv tdjango -p `which python3`
source tdjango/bin/activate
pip install django
django-admin startproject progtdjango
uwsgi --http-socket :8000 --plugins python3 \
--module=progtdjango.wsgi:application \
--home `pwd`/tdjango \
--chdir `pwd`/progtdjango
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question