- Install python3+pip3 if needed
- Install pipenv environment
pip install pipenv
- Activate a pipenv environment through creating a new shell
pipenv shell
- Install Python Packages (django-heroku is required in case of deploying to heroku using postgres add-on, skip if not needed)
pipenv install django djangorestframework django-rest-knox django-heroku
- Install NPM packages
npm i
- Run django server
cd boilerplate
python manage.py runserver
- Run frontend module bundler
cd ./
npm run dev
- go to localhost:8000