У нас вы можете посмотреть бесплатно 007 - 04 Azure Developer CLI changes to deploy static JavaScript client to Azure Container Apps или скачать в максимальном доступном качестве, видео которое было загружено на ютуб. Для загрузки выберите вариант из формы ниже:
Если кнопки скачивания не
загрузились
НАЖМИТЕ ЗДЕСЬ или обновите страницу
Если возникают проблемы со скачиванием видео, пожалуйста напишите в поддержку по адресу внизу
страницы.
Спасибо за использование сервиса ClipSaver.ru
Idiomatic JavaScript static front-end framework build and deploy where backend URI is used in the framework build step. Change the Azure.yml, used by Azure Developer CLI, to 1) tag the Docker image with a static tag, 2) add a `predeploy` hook to get the AZD environment variables into a `.env.local` so that the Dockerfile's npm run build can generate static files with the backend API URL already in the source code. This is different from the technique shows in the following video and sample code repository which is more idiomatic of .NET or Java where the application starts, then reads in the environment variables. Video of .NET/Java technique: • 007 - 001 - Understand how AZD template ex... Sample code: https://github.com/Azure-Samples/todo... 1) `azure.yml` - add a client service with static tag for docker and predeployment hook script 2) In client `package.json`, add script to generate `.env.local`, add `dotenv` as dependency 3) Create script to read in AZD privisioned resource URI for backend using `azd env get-values` and call `azd package` Sample project: https://github.com/dfberry/cloud-nati...