Hello everybody, *I’ve got a quick question*: how...
# general
m
Hello everybody, I’ve got a quick question: how could I run pulumi in mode that will show me everything zipped for an Azure function before upload. Something like
.serverless
folder with serverless framework. thanks!
t
Hi Leo, nice to see you here!
The package is produced in-memory, so I can't think of a better way other than dumping its url into the output and then downloading it back:
Copy code
export const zip = fn.functionApp.appSettings.apply(s => s!["WEBSITE_RUN_FROM_PACKAGE"]);
👍 1