Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/afnanelhussini/employeetracker-api


https://github.com/afnanelhussini/employeetracker-api

Last synced: about 19 hours ago
JSON representation

Awesome Lists containing this project

README

        

# Employee Tracker API
This is a .NET 6 Web API project for managing employee data. It provides basic CRUD operations for employees with validation and pagination features.
### Prerequisites

- .NET 6 SDK
### Installation

1. Clone this repository to your local machine.
2. Open the solution in Visual Studio or your preferred IDE.
3. Update the database connection string in `appsettings.json`.
4. Run the migration commands:
```bash
dotnet ef migrations add InitialCreate
dotnet ef database update
```
5. Build and run the project:
```bash
dotnet build
dotnet run