- User Account Activation Resend Email
- User Password Reset using mail
/api/auth/reset_password/
- User Password Confirmation
/api/auth/reset_password_confirm/
/api/auth/change_password/
/api/meetups/{meetup_id}/questions/{question_id}/
- First Create python virtual env
$ virtualenv -p python .venv
$ pip install -r requirements.txt
- Copy .env-example to .env and set config
- Copy .env-example to .env and set config-In Ubuntu and Kali linux
$ sudo su postgres
$ psql
postgres=# CREATE USER django WITH PASSWORD 'password';
postgres=# ALTER ROLE django SET client_encoding TO 'utf8';
postgres=# ALTER ROLE django SET default_transaction_isolation TO 'read committed';
postgres=# ALTER ROLE django SET timezone TO 'UTC';
postgres=# CREATE DATABASE drf;
postgres=# GRANT ALL PRIVILEGES ON DATABASE drf TO django;
postgres=# \q
$ exit
$ python api/manage.py runserver