Use an env specific teamsapp.env.yml file with Teams Toolkit CLI #12550
-
On top of teamsapp.yml, teamsapp.local.yml and teamsapp.testtool.yml, I would need an other project file for a specific environment. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Those are the only three YML files supported. teamsapp.local.yml is for the 'local' environment, that is either using teamsapp.yml is for all other custom environments, intended for 'remote' hosting in a place like Azure. So teamsapp.testtool.yml is another special one like local except unique to the App Test Tool debug target where most provisioning pieces are not needed, but you might want to run a script or NPM commands as part of the F5/Start Debugging experience. |
Beta Was this translation helpful? Give feedback.
Those are the only three YML files supported.
teamsapp.local.yml is for the 'local' environment, that is either using
--env local
with the CLI or F5/Start Debugging in VS or VS Code.teamsapp.yml is for all other custom environments, intended for 'remote' hosting in a place like Azure. So
prod
,dev
,{name}
would all use that configuration.teamsapp.testtool.yml is another special one like local except unique to the App Test Tool debug target where most provisioning pieces are not needed, but you might want to run a script or NPM commands as part of the F5/Start Debugging experience.