Fading Coder

One Final Commit for the Last Sprint

Deploying Django 1.8.2 with uWSGI and Nginx on macOS

Configuring uWSGI Installation Install uWSGI using pip: pip3 install uwsgi Verificasion You can verify the installaiton in two ways. Method 1: Using a simple WSGI application Create a file named wsgi_test.py with the following content: def simple_app(environ, start_fn): start_fn('200 OK', [('Content...