InstallationΒΆ

  1. Install django-weeny using pip or get latest stable release from Bitbucket.

    $ pip install django-weeny
    
  2. Make sure you have enabled the django.contrib.sites and south.

  3. Add weeny to INSTALLED_APPS.

    INSTALLED_APPS = (
        ...
        'django.contrib.sites',
        'south',
        'weeny',
        ...
    )
    
  4. Include weeny.urls.py in your urlconf.

    urlpatterns = patterns('',
        ...
        url(r'^weeny/', include("weeny.urls")),
        ...
    )
    

    Tip

    You can use whatever url prefix you’d like for the weeny app. For instance, in the current example you would get short urls like this: https://myfantasticsite.com/weeny/PxAwd7/

  5. Install migrations.

    $ python manage.py migrate weeny