Practice App User Manual - bounswe/bounswe2019group6 GitHub Wiki

User Manual

This page consists manual of how to run application on your local computer.

Backend (practice-app/src/djangotut/)

  1. Install required packages by typing pip install -r requirementes.txt inside the application folder.
  2. Create a file named .env. Copy the content from .env.example into new created file. Replace the necessary fields inside the .env file with your credentials.
  3. Let the application run in the background python manage.py runserver.

Frontend (practice-app/src/djangotut-ui/)

  1. Install the node modules by typing npm install.
  2. Let the application run and serve files npm run start.
  3. Open localhost:4200 on your fav browser.

In order to run application fully functional, you have to run django app at port 8080 by typing inside the django app python manage.py runserver 8080.