Skip to content

Latest commit

 

History

History
33 lines (23 loc) · 819 Bytes

README.rst

File metadata and controls

33 lines (23 loc) · 819 Bytes

django-fairepart

Build Status

A generic application to import your contact from facebook, google, etc.

Installation

  1. Download the package on GitHub or simply install it via PyPi
  2. Add fairepart to your INSTALLED_APPS :

    INSTALLED_APPS = (
        'fairepart',
    )
  3. Sync your database using syncdb command from django command line
  4. Include fairepart in your urls.py :

    from django.conf.urls import patterns, url, include
    
    urlpatterns = patterns(
        '',
        (r'^',
        include('fairepart.urls')),
    )
  5. Configure settings