This is a template created for Backstage. This template using .Net 6.0 framework.
Go to solution folder
cd my-projectBuild the solution
dotnet buildStart the server
cd my-project.Api
dotnet runTo run tests, run the following command
cd my-project.Test
dotnet testTo run the api using a local docker, run the following command
docker build -t my-project -f Dockerfile .
docker run --rm -p 5000:5000 -e ASPNETCORE_URLS=http://+:5000 my-project