From 5817ce3a53f45183be920bdda5718b1e4ea0d1b1 Mon Sep 17 00:00:00 2001 From: Herb Caudill Date: Tue, 12 Nov 2019 18:19:51 +0100 Subject: [PATCH] README.md: update --- README.md | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 53342e7..c73fd65 100644 --- a/README.md +++ b/README.md @@ -61,8 +61,16 @@ gcloud app browse ## Deploying to Azure -> You'll need to install the [Azure CLI](https://docs.microsoft.com/en-us/cli/azure/install-azure-cli?view=azure-cli-latest). +> You'll need to have the [Azure CLI](https://docs.microsoft.com/en-us/cli/azure/install-azure-cli?view=azure-cli-latest) installed. ```bash - +az group create --name my-signal-server --location eastus +az configure --defaults group=cevitxe location=eastus +az appservice plan create --name cevitxe --sku F1 +az webapp create --name cevitxe-signal-server --plan cevitxe +az webapp deployment user set --user-name USERNAME --password PASSWORD +az webapp deployment source config-local-git --name cevitxe-signal-server +git remote add azure https://USERNAME@cevitxe-signal-server.scm.azurewebsites.net/cevitxe-signal-server.git +git push azure master +az webapp browse --name cevitxe-signal-server ```