From ea8188567e40b212ae40dc5b58eef2a18942cea9 Mon Sep 17 00:00:00 2001 From: Ekirapapaul Date: Sun, 9 Aug 2020 16:37:38 +0300 Subject: [PATCH] Update read me --- README.rst | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/README.rst b/README.rst index b70658b..c68c03b 100644 --- a/README.rst +++ b/README.rst @@ -10,7 +10,7 @@ Detailed documentation is in the "docs" directory. Quick start ----------- -1. Add "polls" to your INSTALLED_APPS setting like this:: +1. Add "django-mpesa" to your INSTALLED_APPS setting like this:: INSTALLED_APPS = [ ... @@ -19,6 +19,9 @@ Quick start 2. Include the polls URLconf in your project urls.py like this:: + from django.urls import path, include + from mpesa.urls import mpesa_urls + path('mpesa/', include(mpesa_urls)), 3. Run `python manage.py migrate` to create the polls models.