A show case for tapio
Run the Ensure-Prerequisites.ps1
PowerShell script to install the prerequisites.
Execute the following commands
cd src\web
ng build
npm install
dotnet build
The result can be found in the directory src\web\bin\Debug\netcoreapp2.2
In order to authenticate against tapio the credentials have to be provided. First restore the dependencies.
cd .\src\
dotnet restore
Now the Microsoft.Extensions.SecretManager.Tools is available.
Run the following commands with the actual secrets
cd .\src\web\
dotnet user-secrets set "TapioCloud:ClientID" "XYZ"
dotnet user-secrets set "TapioCloud:ClientSecret" "XYZ"
Execute the following commands in one shell
cd src\web
ng build --watch
Execute the following commands in another shell
cd src\web
dotnet run
Navigate to https://localhost:5001 with a browser
Execute the following commands
cd src\web
npm install
ng build
dotnet publish
The result can be found in the directory src\web\bin\Debug\netcoreapp2.2\publish
Provide access to the client id and secret via App Settings. Settings
- TapioCloud:ClientID XYZ
- TapioCloud:ClientSecret XYZ
Licensed under MIT License