Bläddra i källkod

Update readme

Denis K 9 år sedan
förälder
incheckning
69d261c827
1 ändrade filer med 46 tillägg och 0 borttagningar
  1. 46 0
      README.rst

+ 46 - 0
README.rst

@@ -111,3 +111,49 @@ Installation
         
 * Clear your browser cache
 
+Dashboard installation
+======================
+
+.. note:: Dashboard is located into a separate application. So after a typical JET installation it won't be active.
+          To enable dashboard application follow these steps:
+
+* Add 'jet.dashboard' application to the INSTALLED_APPS setting of your Django project settings.py file (note it should be before 'jet'):
+
+.. code:: python
+
+    INSTALLED_APPS = (
+        ...
+        'jet.dashboard',
+        'jet',
+        'django.contrib.admin',
+        ...
+    )
+
+* Add URL-pattern to the urlpatterns of your Django project urls.py file (they are needed for related–lookups and autocompletes):
+
+.. code:: python
+
+    urlpatterns = patterns(
+        '',
+        url(r'^jet/', include('jet.urls', 'jet')),  # Django JET URLS
+        url(r'^jet/dashboard/', include('jet.dashboard.urls', 'jet-dashboard')),  # Django JET dashboard URLS
+        url(r'^admin/', include(admin.site.urls)),
+        ...
+    )
+
+* Create database tables:
+
+.. code:: python
+
+    python manage.py migrate dashboard
+    # or
+    python manage.py syncdb
+
+* Collect static if you are in production environment:
+
+.. code:: python
+
+        python manage.py collectstatic
+
+
+