Skip to content

Instantly share code, notes, and snippets.

@DragonBe
Created December 1, 2017 08:38
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save DragonBe/f3a9352831953af555fa403b03360989 to your computer and use it in GitHub Desktop.
Save DragonBe/f3a9352831953af555fa403b03360989 to your computer and use it in GitHub Desktop.
Basic Microsoft Azure CLI/SDK commands to quickly launch a web app on Azure cloud services
azure login
azure group create -t project=<project_name> <group_name> westeurope
azure appserviceplan create <group_name> <service_name> westeurope F1
azure webapp create <group_name> <app_name> westeurope <service_name>
azure webapp config set --phpversion 7.1 --detailederrorloggingenabled true <group_name> <app_name>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment