From d2d7e356f2b56e815d9934c45452beabeb67f4cb Mon Sep 17 00:00:00 2001 From: William Kpabitey Kwabla Date: Fri, 2 Aug 2019 15:01:50 +0000 Subject: [PATCH] [UPDATE] :zap: Add install and migration config After installing the app, the user should add 'cas' to their installed apps and make migrations. The README didn't add these two to the installation process. This proposal adds those two installation process. --- README.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/README.md b/README.md index 7956351..5422711 100644 --- a/README.md +++ b/README.md @@ -16,6 +16,8 @@ This project is registered on PyPi as django-cas-client. To install:: pip install django-cas-client==1.5.1 +### Add to installed apps + 'cas', ### Add to URLs @@ -46,6 +48,11 @@ Add cas to middleware classes 'django.contrib.auth.backends.ModelBackend', 'cas.backends.CASBackend', ) + +### Add migrations + + python manage.py makemigrations cas + python manage.py migrate cas ## How to Contribute