The User Management System is a web application designed to manage user accounts. It allows users to create, view, edit, and delete user information. The application is built using .NET Core for the backend and Angular for the frontend, ensuring a robust and responsive user experience.
- Create new user accounts
- View a list of existing users
- Edit user details
- Delete user accounts
- GDPR compliance measures implemented
- User-friendly interface with responsive design
- Frontend: Angular, Bootstrap
- Backend: .NET Core, MongoDB
Before you begin, ensure you have the following installed on your machine:
- .NET SDK (version 6.0 or later)
- Node.js (version 14 or later)
- Angular CLI (install via npm:
npm install -g @angular/cli
)
Follow these steps to set up the project locally:
-
Clone the repository:
git clone https://github.com/akashlimbani/user-management-system.git cd user-management-system/backend
-
Restore the NuGet packages:
dotnet restore
-
Run the application:
dotnet run
-
Navigate to the frontend directory:
cd ../frontend
-
Install the required npm packages:
npm install
-
Run the Angular application:
ng serve
-
Open your browser and navigate to
http://localhost:4200
.