A simple django app with signup, account activation, login, change password, and user list.
Create a file keys.json
in app/settings
based on keys.json.sample
. Replace all the fields with proper values.
run migrate
to migrate third-party models.
Run the server with command:
python manage.py runserver --settings=settings.dev
(since there are no prod settings yet.)
/api/v1/users/signup/
/api/v1/users/login/
/api/v1/users/
/api/v1/users/change_password/
/api/v1/users/<pk>/activate/