Metadata-Version: 2.0
Name: django-hunger
Version: 2.0.2
Summary: A Django app to manage a private beta phase.
Home-page: https://github.com/joshuakarjala/django-hunger/
Author: Joshua Karjala-Svenden
Author-email: joshua@fluxuries.com
License: MIT
Platform: any
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Framework :: Django
Provides-Extra: test
Requires-Dist: Django (>=1.3); extra == 'test'

Hunger
======

.. image:: https://secure.travis-ci.org/joshuakarjala/django-hunger.png?branch=master
   :target: http://travis-ci.org/joshuakarjala/django-hunger

Django-hunger provides a flexible private beta phase for Django
projects.


Features and Design Decisions
-----------------------------

- Three ways to get into the beta.

   #. Users self-signup for the beta. An admin can choose to invite
      them at any time.
   #. An admin can grant in-beta users with a limited number of
      invites to invite their friends.
   #. An admin can create a limited number public beta code that
      anybody can use to join the beta. Useful for
      press releases.

- Hunger is a post-registration app, meaning the intended behavior
  is to let users sign up freely, but restrict the rest of the site to
  beta participants. This makes it easy to integrate with social login
  and user management apps.

- Email as the method of choice for communication. Emails are used to
  send people their invites.

- Flexible design with many entry points for customization of default
  behavior.

- TODO: Tracking and user analytics for the beta phase. Want to know
  which users are the most excited about your site? Find out by
  analyzing the invite graph.


Documentation
-------------

Check out the full documentation at http://django-hunger.readthedocs.org/.


