README Change. Added Windows command note.
diff --git a/.gitignore b/.gitignore
index 9aa90e2..66df260 100644
--- a/.gitignore
+++ b/.gitignore
@@ -17,3 +17,4 @@
 site/
 .tox/
 yarn-error.log
+*.pem
diff --git a/README.md b/README.md
index 17fd6b3..3bc441a 100644
--- a/README.md
+++ b/README.md
@@ -35,10 +35,14 @@
     cd airavata-django-portal
     python3 -m venv venv
     source venv/bin/activate
+    <!-- For Windows, omit source -->
     pip install --upgrade pip setuptools wheel
     pip install -r requirements.txt
     ```
 
+    - **Windows note**: Use ```venv\Scripts\activate``` instead
+      <!-- https://docs.python.org/3/library/venv.html -->
+
     - **macOS note**: to install the MySQL dependencies you need to have the
       MySQL development headers and libraries installed. Also, on macOS you need
       to have openssl installed. See the
diff --git a/django_airavata/settings.py b/django_airavata/settings.py
index a2cf382..6e82c4c 100644
--- a/django_airavata/settings.py
+++ b/django_airavata/settings.py
@@ -79,6 +79,10 @@
 
     # Airavata Django Portal SDK
     'airavata_django_portal_sdk',
+
+
+    'django_extensions',
+
 ]
 
 # List of app labels for Airavata apps that should be hidden from menus
diff --git a/requirements-dev.txt b/requirements-dev.txt
index 9ee22a3..8c71b90 100644
--- a/requirements-dev.txt
+++ b/requirements-dev.txt
Binary files differ