The project exists for the purpose of code practice.
- dotnet 5.0 runtime (https://dotnet.microsoft.com/download/dotnet/5.0)
- Entity Framework Core Cli (https://docs.microsoft.com/en-us/ef/core/cli/dotnet)
- PostgressDb (https://www.postgresql.org/download/)
- Open cmd in project root directory
- Edit connection string to your db in appsettings.json
- Create migrations:
dotnet ef migration add init
- Update your db by application model schema:
dotnet ef database update
- Run app:
dotnet run
- Open https://localhost:5001/swagger/index.html
Please contact me if you have any problems/questions