An application consist of the following endpoints: get current users, login, signup, email activation , change password.
Copy keys.json.example
in the config/
folder of the app and rename it as keys.json
. Fillup and replace the
following fields with the appropriate data.
Run the following commands to install dependencies.
pip install -r requirements.txt
python manage.py migrate --settings=config.settings
python manage.py runserver --settings=config.settings
user List
/api/v1/users/
signup
/api/v1/users/signup/
activate
/api/v1/users/{pk}/activate/
login
/api/v1/users/login/
change password
/api/v1/users/change_password/