django-hackref

A Django app to create, monitor and track user referral links


Keywords
django, referrals, growth, marketing
License
MIT
Install
pip install django-hackref==0.1.3

Documentation

Welcome to django-hackref!

https://travis-ci.org/jmitchel3/django-hackref.png https://coveralls.io/repos/github/jmitchel3/django-hackref/badge.svg?branch=master

Hack Referrals is a Django app to create, monitor and track user referral links.

Quick start

  1. Install via "pip":

    pip install django-hackref
    
  2. Add "hackref" to your INSTALLED_APPS setting like this:

    INSTALLED_APPS = [
        ...
        'hackref',
    ]
    
  3. Include the polls URLconf in your project urls.py like this:

    url(r'^r/', include('hackref.urls')),
    
  4. Run python manage.py migrate.