Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/damienaicheh/toolboxapi


https://github.com/damienaicheh/toolboxapi

Last synced: about 2 months ago
JSON representation

Awesome Lists containing this project

README

        

# Tool Box API

## Build the project

dotnet restore

dotnet build -c Release

## Publish the project

dotnet publish -c Release -o out

cd out && zip -r app.zip .

## Deploy
az login --use-device-code --tenantid

az account show

az webapp deploy \
--name ${{ parameters.webAppName }} \
--resource-group ${{ parameters.webAppResourceGroup }} \
--src-path app.zip
--type zip