Skip to content
Jacob Sayles edited this page Jul 22, 2014 · 19 revisions

Welcome to the modernomad wiki!

we're doing some hacking this (2014) summer! summer of code love

When Testing

Use this simple script to NOT spam everyone AND login as anyone: modernomad$ ./manage.py shell from django.contrib.auth.models import User for u in User.objects.all(): u.email='[email protected]' u.set_password('password') u.save()

Clone this wiki locally