https://github.com/dapr/dapr/releases
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
winget install Microsoft.Powershell | |
Winget install "Company Portal" | |
Winget install "Microsoft .NET SDK" #assume .NET SDK 6.0+ | |
Winget install "Python.Python.3" | |
Winget install "Node.js" | |
Winget install "Git.Git" | |
Winget install "Microsoft Azure Storage Explorer" | |
Winget install "Microsoft Azure CLI" | |
Winget install "Discord" | |
wsl --install |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# .NET 6 SDK | |
sudo apt-get update; \ | |
sudo apt-get install -y apt-transport-https && \ | |
sudo apt-get update && \ | |
sudo apt-get install -y dotnet-sdk-6.0 | |
# .NET 3.1 Runtime, needed for Tye | |
sudo apt-get update; \ | |
sudo apt-get install -y apt-transport-https && \ | |
sudo apt-get update && \ | |
sudo apt-get install -y aspnetcore-runtime-3.1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
param resourceToken string | |
param location string | |
param skuName string = 'Basic' | |
param queueNames array = [ | |
'orders' | |
] | |
var deadLetterFirehoseQueueName = 'deadletterfirehose' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
param resourceToken string | |
param location string | |
param skuName string = 'Standard' | |
param topicName string = 'orders' | |
resource serviceBusNamespace 'Microsoft.ServiceBus/namespaces@2018-01-01-preview' = { | |
name: 'sb-${resourceToken}' | |
location: location | |
sku: { | |
name: skuName |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
curl --request GET --url https://mcr.microsoft.com/v2/dotnet/aspnet/manifests/sha256:fd2378d2cf94cb60c7bcccf176c3175151827b4d2d99ae9e94f991478e1c70d1 --header 'Accept: application/vnd.docker.distribution.manifest.v2+json' --user-agent "mcrafdinvestiongation1" -v | |
curl --request GET --url https://mcr.microsoft.com/v2/dotnet/aspnet/blobs/sha256:dd6189d6fc13cb03db0f4a3d9659b6b6044fd5858019d659001eaf8367584d67 --header 'Accept: application/vnd.docker.image.rootfs.diff.tar.gzip' --user-agent "mcrafdinvestiongation1" -v | |
curl --request GET --url https://eastus.data.mcr.microsoft.com/aba285c624a04409823b708c7a50e7b9-jttfjm99vo//docker/registry/v2/blobs/sha256/dd/dd6189d6fc13cb03db0f4a3d9659b6b6044fd5858019d659001eaf8367584d67/data\?se\=2022-11-14T19%3A49%3A14Z\&\;sig\=juQIf7%2FhRfWKjdYEqKGxzn1W7JvjsOeGpLUirhLv9oI%3D\&\;sp\=r\&\;spr\=https\&\;sr\=b\&\;sv\=2016-05-31\&\;regid\=aba285c624a04409823b708c7a50e7b9 --user-agent "mcrafdinvestiongation1" -v --output dockerlayer.tar |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# First uninstall any existing Core Tools | |
brew uninstall azure-functions-core-tools@4 | |
# Install x64 Intel Brew tools in an alternate path | |
# Follow: https://medium.com/mkdir-awesome/how-to-install-x86-64-homebrew-packages-on-apple-m1-macbook-54ba295230f | |
# Copy next SIX lines into bottom of your ~/.zshrc file and then restart Terminal | |
# need this for x86_64 brew | |
export PATH=$HOME/bin:/usr/local/bin:$PATH | |
# for intel x86_64 brew |
-
unzip the tools that match your OS and Arch, and copy to your usr folder
~/funccli/Azure.Functions.Cli.osx-x64.4.0.5194
-
make the func cli executable
cd ~/funccli/Azure.Functions.Cli.osx-x64.4.0.5194
chmod +x func
- run func cli in this folder
./func version
OlderNewer