Skip to content

Latest commit

 

History

History
45 lines (39 loc) · 1.04 KB

README.md

File metadata and controls

45 lines (39 loc) · 1.04 KB

EIU_Projects

This page contains important information on how to properly configure and run EIU_Projects

Table of contents

Used Technologies

  • ASP.NET Core Web API
  • Entity Framework Core
  • MediatR
  • AutoMapper

Getting started

Set up

Install Dotnet SDK

Windows

Use any of the following methods

  • Winget
winget install Microsoft.DotNet.SDK.<version>

supported versions are 6, 7, 8

Linux

Instructions to install the Dotnet SDK on several Linux distros can be found here

Install dotnet ef (optional)

dotnet tool install --global dotnet-ef

Start the server

with dotnet command

cd API
dotnet run

with Docker

docker build -t api -f API/Dockerfile .