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/)
- Install required packages by typing
pip install -r requirementes.txtinside the application folder. - Create a file named
.env. Copy the content from .env.example into new created file. Replace the necessary fields inside the.envfile with your credentials. - Let the application run in the background
python manage.py runserver.
Frontend (practice-app/src/djangotut-ui/)
- Install the node modules by typing
npm install. - Let the application run and serve files
npm run start. - Open
localhost:4200on 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.