How to deploy to a deployment slot of App Service using azd deploy? #2641
-
I am having trouble figuring out how to deploy to a specific slot using azd deploy. What I have is this - ...
services:
backend:
project: ./app/backend
language: py
host: appservice
hooks:
prepackage:
windows:
shell: pwsh
run: cd ../frontend;npm install;npm run build
interactive: true
continueOnError: false
posix:
shell: sh
run: cd ../frontend;npm install;npm run build
interactive: true
continueOnError: false
backenddev:
project: ./app/backend
language: py
host: appservice
hooks:
prepackage:
windows:
shell: pwsh
run: cd ../frontend;npm install;npm run build
interactive: true
continueOnError: false
posix:
shell: sh
run: cd ../frontend;npm install;npm run build
interactive: true
continueOnError: false where backend is the production, and backenddev is meant to be for dev slot.
Is deploying to a slot using azd not supported? How should I go about doing this? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Yeah - we don't currently support deployment slots. We have an ongoing conversation about multi-environment management in #2373 |
Beta Was this translation helpful? Give feedback.
Yeah - we don't currently support deployment slots. We have an ongoing conversation about multi-environment management in #2373