May 2018
Beginner to intermediate
526 pages
11h 57m
English
You can run uWSGI from the command line. Open the shell and run the following command from the educa project directory:
sudo uwsgi --module=educa.wsgi:application \--env=DJANGO_SETTINGS_MODULE=educa.settings.pro \--master --pidfile=/tmp/project-master.pid \--http=127.0.0.1:8000 \--uid=1000 \--virtualenv=/home/env/educa/
You might have to prepend sudo to this command if you don't have the required permissions.
With this command, we run uWSGI on our localhost with the following options:
Read now
Unlock full access