This is a template created for Backstage. This template using .Net 6.0 framework.
Go to solution folder
cd my-project
Build the solution
dotnet build
Start the server
cd my-project.Api
dotnet run
To run tests, run the following command
cd my-project.Test
dotnet test
To 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