-
Accounts - for handling authentication
signup/login/logout/change-password/token/refresh/token/verify/token/login/
-
Users - for handling all user requests
.../
-
Merchants - for handling all merchant requests
.../
- clone the project
- create virtual environment
virtualenv venv - activate the environment
source venv/bin/activate# linux, mac - move to
backenddirectory - install dependencies
pip install -r requirements.txt - run server
python manage.py runserver
- move to
frontenddirectory - install dependencies
npm install - run development server
npm start