forked from OpenEye-team/disease-detection-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Untitled-1.sh
44 lines (38 loc) · 2.07 KB
/
Untitled-1.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
SUBSCRIPTION="Microsoft Azure Sponsorship"
RESOURCEGROUP="peaky-blinder"
LOCATION="southeastasia"
PLANNAME="ASP-moonchickdiseasegroup-8645"
PLANSKU="B2"
SITENAME="peaky-blinder-ai"
RUNTIME="PYTHON|3.9"
# login supports device login, username/password, and service principals
# see https://docs.microsoft.com/en-us/cli/azure/?view=azure-cli-latest#az_login
az login
# list all of the available subscriptions
az account list -o table
# set the default subscription for subsequent operations
az account set --subscription $SUBSCRIPTION
# create a resource group for your application
az group create --name $RESOURCEGROUP --location $LOCATION
# create an appservice plan (a machine) where your site will run
az appservice plan create --name $PLANNAME --location $LOCATION --is-linux --sku $PLANSKU --resource-group $RESOURCEGROUP
# create the web application on the plan
# specify the node version your app requires
az webapp create --name $SITENAME --plan $PLANNAME --runtime $RUNTIME --resource-group $RESOURCEGROUP
#upgrade pip
az webapp config appsettings set --name $SITENAME --resource-group $RESOURCEGROUP --settings PRE_BUILD_COMMAND="python -m pip install --upgrade pip && pip install -r requirements.txt"
# To set up deployment from a local git repository, uncomment the following commands.
# first, set the username and password (use environment variables!)
# USERNAME=""
# PASSWORD=""
# az webapp deployment user set --user-name $USERNAME --password $PASSWORD
# now, configure the site for deployment. in this case, we will deploy from the local git repository
# you can also configure your site to be deployed from a remote git repository or set up a CI/CD workflow
# az webapp deployment source config-local-git --name $SITENAME --resource-group $RESOURCEGROUP
# the previous command returned the git remote to deploy to
# use this to set up a new remote named "azure"
# git remote add azure "https://$USERNAME@$SITENAME.scm.azurewebsites.net/$SITENAME.git"
# push master to deploy the site
# git push azure master
# browse to the site
# az webapp browse --name $SITENAME --resource-group $RESOURCEGROUP