This project was generated with Angular CLI version 1.6.8.
This repo is part of the tiny project/demo/portfolio for a Super Simple Book Lending App.
It is responsible for creating the graphical user interface, managing the API calls, and control user access in each action (borrow, reserve, return).
Assuming you already have Angular CLI and you already installed and deployed the repos book-lending-app-auth and book-lending-app-api, the following steps will explain how to install this project on your machine.
- Clone this repo
- Install the dependent modules
- Open the file
src/app/service/login.service.ts
and update the urls of the API call to the one you created installing the repo book-lending-app-auth. - Open the file
src/app/service/book-lending.service.ts
and update the url of the API call in the methods getBookList() and postActionBook() to the one you created installing the repo book-lending-app-api.- For the method postActionBook() don't paste the entire url. This method is dynamically taking the last two path parameters, the first one is the utility (reservations/lendings/returnings), and the second one is the id of the book.
- To execute in local mode run
ng serve --open
.
Just delete the entire folder.