Jon Gallant
Jon Gallant
We have a Java API working in Azure/azure-dev-pr#459 and need to update the azdev CLI to support packaging and deployment. We have references here: https://github.com/microsoft/nubesgen-actions/blob/main/gitops-build-java-maven/action.yml https://github.com/microsoft/nubesgen-actions/blob/main/gitops-deploy-to-app-service-java/action.yml And @jdubois Can help...
Today we only support zip deployment. Let's also support git deployment.
Some projects are going to want to put env vars that are shared in all envs and shipped in the repo, even as a placeholder, like this: ``` SOMEVALUE= ```...
`azd generate` Generates the IaC code ARM templates from bicep, k8s manifest from Tye, so the user can save it in GitOps repo or inspect it as needed.
The template readmes are very similar across projects. Let's figure out a way to reuse content and make them dynamic. For example, on `azd init -t {{ template-name }}` And...