You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Updater uses the built-in Django user authentication libraries to handle user authentication. See here for more details.
To create a new account (i.e. betta, admin, steven) for Updater, simply do the following:
SSH to updater.mobilizingcs.org
Navigate to /home/william/newupdater/uproject/
Open up the Django shell by running:
./manage.py shell
Type the following into the Django shell prompt:
from django.contrib.auth.models import User
# Replace USERNAME and PASSWORD with desired user/pass
u = User.objects.create_user('USERNAME', '', 'PASSWORD')
u.save()