-
-
Save scalixte-mdsol/05bab42731f1ffaa7da78629dbf43bed to your computer and use it in GitHub Desktop.
This file contains hidden or 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
| #!/bin/bash | |
| az appservice plan create \ | |
| -g webapps-dev-rg \ | |
| -n gm-asp-dev-02 \ | |
| --is-linux \ | |
| --number-of-workers 1 \ | |
| --sku S1 | |
| az webapp create \ | |
| -g webapps-dev-rg \ | |
| -p gm-asp-dev-02 \ | |
| --runtime "node|6.2" \ | |
| -n gm-webapp-dev-02 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment