File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
articles/app-service/includes/configure-language-java-data-sources Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -32,10 +32,10 @@ ms.author: cephalin
32
32
export RESOURCE_GROUP_NAME=< resource-group-name>
33
33
export APP_NAME=< app-name>
34
34
35
- # The lib type uploads to /home/site/libs by default
35
+ # The lib type uploads to /home/site/libs by default.
36
36
az webapp deploy --resource-group $RESOURCE_GROUP_NAME --name $APP_NAME --src-path mysql-connector-j-9.1.0.jar --target-path mysql-connector-j-9.1.0.jar --type lib
37
37
az webapp deploy --resource-group $RESOURCE_GROUP_NAME --name $APP_NAME --src-path jboss_cli_commands.cli --target-path /home/site/scripts/jboss_cli_commands.cli --type static
38
- # The startup type uploads to /home/site/scripts by default and sets it up to run on startup
38
+ # The startup type uploads to /home/site/scripts/startup.sh by default.
39
39
az webapp deploy --resource-group $RESOURCE_GROUP_NAME --name $APP_NAME --src-path startup.sh --type startup
40
40
` ` `
41
41
Original file line number Diff line number Diff line change @@ -32,10 +32,10 @@ ms.author: cephalin
32
32
export RESOURCE_GROUP_NAME=< resource-group-name>
33
33
export APP_NAME=< app-name>
34
34
35
- # The lib type uploads to /home/site/libs by default
35
+ # The lib type uploads to /home/site/libs by default.
36
36
az webapp deploy --resource-group $RESOURCE_GROUP_NAME --name $APP_NAME --src-path postgresql-42.7.1.jar --target-path postgresql-42.7.1.jar --type lib
37
37
az webapp deploy --resource-group $RESOURCE_GROUP_NAME --name $APP_NAME --src-path jboss_cli_commands.cli --target-path /home/site/scripts/jboss_cli_commands.cli --type static
38
- # The startup type uploads to /home/site/scripts by default and sets it up to run on startup
38
+ # The startup type uploads to /home/site/scripts/startup.sh by default.
39
39
az webapp deploy --resource-group $RESOURCE_GROUP_NAME --name $APP_NAME --src-path startup.sh --type startup
40
40
` ` `
41
41
You can’t perform that action at this time.
0 commit comments