Skip to content

Instantly share code, notes, and snippets.

@scalixte-mdsol
Forked from mikepfeiffer/newWebApp.sh
Created February 16, 2025 21:13
Show Gist options
  • Save scalixte-mdsol/05bab42731f1ffaa7da78629dbf43bed to your computer and use it in GitHub Desktop.
Save scalixte-mdsol/05bab42731f1ffaa7da78629dbf43bed to your computer and use it in GitHub Desktop.
#!/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