install.rst 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. ============
  2. Installation
  3. ============
  4. .. note:: After following this instruction Django JET dashboard won't be active (as it is located into
  5. a separate application). If you want to make it work, you will have to enable dashboard application
  6. by following :doc:`install_dashboard` steps too.
  7. * Download and install latest version of Django JET:
  8. .. code:: python
  9. pip install django-jet
  10. # or
  11. easy_install django-jet
  12. * Add 'jet' application to the INSTALLED_APPS setting of your Django project settings.py file (note it should be before 'django.contrib.admin'):
  13. .. code:: python
  14. INSTALLED_APPS = (
  15. ...
  16. 'jet',
  17. 'django.contrib.admin',
  18. ...
  19. )
  20. * Make sure 'django.core.context_processors.request' context processor is enabled in settings.py:
  21. .. code:: python
  22. from django.conf import global_settings
  23. TEMPLATE_CONTEXT_PROCESSORS = global_settings.TEMPLATE_CONTEXT_PROCESSORS + (
  24. 'django.core.context_processors.request',
  25. )
  26. * Add URL-pattern to the urlpatterns of your Django project urls.py file (they are needed for related–lookups and autocompletes):
  27. .. code:: python
  28. urlpatterns = patterns(
  29. '',
  30. url(r'^jet/', include('jet.urls', 'jet')), # Django JET URLS
  31. url(r'^admin/', include(admin.site.urls)),
  32. ...
  33. )
  34. * Create database tables:
  35. .. code:: python
  36. python manage.py migrate jet
  37. # or
  38. python manage.py syncdb
  39. * Collect static if you are in production environment:
  40. .. code:: python
  41. python manage.py collectstatic
  42. * Clear your browser cache