Skip to content

Instantly share code, notes, and snippets.

View anthonychu's full-sized avatar

Anthony Chu anthonychu

View GitHub Profile
#!/bin/bash
APPS=$(az functionapp list --query "[].{group: resourceGroup, name: name}" --output tsv)
IFS=$'\n'
for APP in $APPS
do
GROUP=$(echo $APP | cut -f 1)
NAME=$(echo $APP | cut -f 2)
VERSION=$(az functionapp config appsettings list -g $GROUP -n $NAME --query "[?name == 'FUNCTIONS_EXTENSION_VERSION'].value" --output tsv)
@anthonychu
anthonychu / resources.md
Last active January 23, 2019 07:58
Ignite The Tour - Azure Functions + SignalR Service resources
@anthonychu
anthonychu / resources.md
Last active October 24, 2018 17:29
Calgary .NET User Group - SignalR Resources
@anthonychu
anthonychu / resources.md
Last active October 30, 2018 05:38
CPEN 321 - Containers resources
@anthonychu
anthonychu / resources.md
Last active December 6, 2018 09:24
Resources for DEVintersection SignalR talk
@anthonychu
anthonychu / resources.md
Last active August 9, 2019 06:14
Vegas Azure Meetup July 2017 resources

Tailwind Traders Deploy to Azure Buttons

Instructions

Standalone

This method deploys the Tailwind Traders website with a SQL DB and Cosmos DB, and does not depend on backend microservices.

  • Select standalone
  • Ensure you select a region where you're allowed to deploy SQL Databases and App Services, each of those services have restrictions for internal subs.
@anthonychu
anthonychu / devhub-containers-resources.md
Last active August 28, 2019 16:20
Resources for DevHub Simplifying DevOps Session - August 27, 2019 in Vancouver