Getting Started¶
Installation¶
You can get stable version of Django Suit by using pip or easy_install:
pip install git+https://github.com/marcelogumercinocosta/django-garb.git
You will need to add the
'garb'application to theINSTALLED_APPSsetting of your Django projectsettings.pyfile.:INSTALLED_APPS = ( ... 'garb', 'django.contrib.admin', )
Important
'garb' must be added before 'django.contrib.admin' and if you are using third-party apps.
Deployment¶
Deployment with Django Garb should not be different than any other Django application. If you have problems with deployment on production, read Django docs on wsgi first.
Note
If you deploy your project with Apache or Debug=False don’t forget to run ./manage.py collectstatic