This document has now been incorporated into the uWSGI documentation:
http://uwsgi-docs.readthedocs.org/en/latest/tutorials/Django_and_nginx.html
Steps with explanations to set up a server using:
| # Byte-compiled / optimized / DLL files | |
| __pycache__/ | |
| *.py[cod] | |
| *$py.class | |
| # C extensions | |
| *.so | |
| # Distribution / packaging |
| { | |
| "logging": { | |
| "version": 1, | |
| "disable_existing_loggers": true, | |
| "formatters": { | |
| "brief": { | |
| "class": "logging.Formatter", | |
| "datefmt": "%I:%M:%S", | |
| "format": "%(levelname)-8s; %(name)-15s; %(message)s" | |
| }, |
| from requests_oauthlib import OAuth2Session | |
| from flask import Flask, request, redirect, session, url_for | |
| from flask.json import jsonify | |
| import os | |
| app = Flask(__name__) | |
| # This information is obtained upon registration of a new GitHub | |
| client_id = "<your client key>" |