Skip to content

Latest commit

 

History

History
48 lines (31 loc) · 1.55 KB

README.md

File metadata and controls

48 lines (31 loc) · 1.55 KB

Wildlife Mortalities

This service is used to manage wildlife mortality data collected by Yukon's Department of Environment. This includes hunted and trapped harvest mortalities, human-wildlife conflict mortalities, research mortalities, and collared wildlife mortalities. Additionally, this service handles all deterministic checks for legality of reported harvests, preceeding any investigation by Conservation Officers (if required).

Stack

How do I run this?

See https://docs.microsoft.com/en-us/ef/core/managing-schemas/migrations if you are new to Entity Framework Core.

Ensure that you have LocalDB installed, or override the "AppDbContext" connection string in appsettings.json

Build the project and restore packages

Using the .NET CLI:

dotnet build

Create and seed the database with test data

.NET CLI:

dotnet ef database update

Or, using VS Package Manager Console (PowerShell):

Update-Database

Run the app

.NET CLI:

dotnet run