Skip to content

Setup

Install the template with

shell
dotnet new install DeployBit.Templates

Create a new project with

shell
dotnet new deploybit-starterkit -n MyAwesomeApplication -o MyAwesomeApplication

If you haven't already, install libman (recommended globally)

shell
dotnet tool install -g libman

Go into the root folder, in this example MyAwesomeApplication, and update client library dependencies:

shell
libman restore

Go to the AppHost project and rename the existing .env.example file to .env. This is where you'll add all the environment variables. Make sure you add the .env file to your .gitignore as this file should not be committed to source control.