Check out the post.
-
Fork/Clone
-
Create and activate a virtual environment:
$ python3 -m venv venv && source venv/bin/activate
-
Install the requirements:
(venv)$ pip install -r requirements.txt
-
Apply the migrations and create a superuser:
(venv)$ python manage.py migrate (venv)$ python manage.py createsuperuser
-
Create OAuth apps on GitHub and Twitter.
-
Register the providers in the Django admin.
-
Run the server:
(venv)$ python manage.py runserver