-
-
Notifications
You must be signed in to change notification settings - Fork 121
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #54 from arambazamba:setup
setup guide updated
- Loading branch information
Showing
13 changed files
with
80 additions
and
306 deletions.
There are no files selected for viewing
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
sudo apt update | ||
|
||
# node | ||
sudo curl -sL https://deb.nodesource.com/setup_14.x | sudo bash | ||
sudo apt-get install -y nodejs | ||
|
||
# .net | ||
wget https://packages.microsoft.com/config/ubuntu/20.10/packages-microsoft-prod.deb -O packages-microsoft-prod.deb | ||
sudo dpkg -i packages-microsoft-prod.deb | ||
|
||
sudo apt-get install -y apt-transport-https && \ | ||
sudo apt-get update && \ | ||
sudo apt-get install -y dotnet-sdk-3.1 | ||
|
||
sudo apt-get install -y apt-transport-https && \ | ||
sudo apt-get update && \ | ||
sudo apt-get install -y dotnet-sdk-6.0 | ||
|
||
# azure cli | ||
curl -sL https://aka.ms/InstallAzureCLIDeb | sudo bash | ||
az config set extension.use_dynamic_install=yes | ||
|
||
# function core tools | ||
sudo npm install -g azure-functions-core-tools@4 --unsafe-perm true |
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
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
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
This file was deleted.
Oops, something went wrong.
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
Oops, something went wrong.