How to install
- First make sure you got the Django framework set up correctly.
- Check out the DjangoID sources from Subversion, eg using
svn co http://svn.nicolast.be/djangoid/trunk/djangoid
- Edit settings.py to fit your needs.
- Sync your database and add a user (let's call this user "john") using
python manage.py syncdb
- Browse to http://your-install.tld/admin and log in (as "john" that is).
- (Optional) If the username you want to use is not the admin one you created before, create a new Django user. Beware, currently there's no custom login view yet.
- Create a new DjangoidUser? object, using the exact same username as the one in the Django system: "john" (this is pretty important for now).
- If all goes well, you should be able to use "http://your-install.tld/john/" as an OpenID URI now.
- If you want to use some other URI, browse to "http://your-install.tld/john/", take a look at the source of that page, and copy-paste the link and meta tag in the head section to the head section of (the index page of) the URI you want to use.
That should be it for now!
