Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/afnanelhussini/employeetracker-api
https://github.com/afnanelhussini/employeetracker-api
Last synced: about 19 hours ago
JSON representation
- Host: GitHub
- URL: https://github.com/afnanelhussini/employeetracker-api
- Owner: AfnanElhussini
- Created: 2023-08-15T19:58:23.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2023-09-25T20:01:39.000Z (about 1 year ago)
- Last Synced: 2023-09-26T10:37:50.280Z (about 1 year ago)
- Language: C#
- Size: 6.38 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
### Installation1. 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