Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/damienaicheh/toolboxapi
https://github.com/damienaicheh/toolboxapi
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/damienaicheh/toolboxapi
- Owner: damienaicheh
- Created: 2024-02-20T21:33:15.000Z (11 months ago)
- Default Branch: main
- Last Pushed: 2024-08-27T13:50:58.000Z (4 months ago)
- Last Synced: 2024-08-27T15:20:00.916Z (4 months ago)
- Language: C#
- Size: 5.86 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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 showaz webapp deploy \
--name ${{ parameters.webAppName }} \
--resource-group ${{ parameters.webAppResourceGroup }} \
--src-path app.zip
--type zip