Passwordless Email Auth
Create a virtualenv, activate and install dependencies:
$ virtualenv ~/.virtualenvs/foobar $ . ~/.virtualenvs/foobar/bin/activate $ pip install -r requirements.txt
Initialize the needed settings for sending email:
$ cd pless $ cp app/local_settings.py.template app/local_settings.py $ vi app/local_settings.py
Syncdb and runserver:
$ python manage.py syncdb $ python manage.py runserver
Open your browser at http://localhost:8000 and test it.