The Django backend API endpoints for the app.
- Follow the instructions here
- Database details
- Name: mdm
- User: mdm_user
- Password: InchOwiL
- Execute these commands from this project's root.
- Install the
pipenv
package (only have to do it once).$ pip install pipenv
- Open the virtual environment shell.
$ pipenv shell
- Install all the packages from Pipfile
$ pipenv install
- Execute these commands inside the pipenv shell opened from the above steps.
- Make and run migrations:
$ python manage.py makemigrations $ python manage.py migrate
- Run server:
$ python manage.py runserver
- Open browser and access the website on 127.0.0.1:8000