This is a basic application developed with Angular for managing users. Each user consists of an id, email, first name, last name, role (doctor, admin, accountant) and status (active, inactive). The application allows you to perform CRUD (Create, Read, Update, Delete) operations on the user data.
This application is a client-side only solution, meaning that any edits done are stored locally.
This project was generated with Angular CLI version 9.1.7.
You need to have an angular environment setup to run this project locally. For instructions on how to set up your angular environment locally click the following link | Angular Setup.
Once your angular environment is setup, follow the steps below to run this application.
- Install the Angular CLI
npm install -g @angular/cli
- Clone the repository to your local machine.
- Open the terminal in the project repository.
- Run
npm install
to install all the dependencies. - Run
ng serve -o
to run the application and have it open in your default browser. - Play around with the application and enjoy! :)
Home Page contains the user table that displays the list of existing users. On the home page you can Add, Update or Delete an existing user.