Dica: Pressione ESC para fechar

Dicas de .NET

Como criar e publicar uma Azure Function em C# para consultar o mercado de ações

Sobre o Vídeo

Notas Importantes

Links

Azurite (Storage local)

https://github.com/Azure/Azurite

Azure Functions Core Tools

https://learn.microsoft.com/azure/azure-functions/functions-run-local

Timer trigger (cron)

https://learn.microsoft.com/azure/azure-functions/functions-bindings-timer

Alpha Vantage

https://www.alphavantage.co/

Portal Azure

https://portal.azure.com/

Preços Azure Functions

https://azure.microsoft.com/pt-pt/pricing/details/functions/#pricing

Resend Github

https://github.com/resend/resend-dotnet/

Resend Nuget

https://www.nuget.org/packages/Resend

Portal Resend

https://resend.com

Instalar o AZ CLI

https://learn.microsoft.com/en-us/cli/azure/install-azure-cli?view=azure-cli-latest

Email temporário

https://temp-mail.org/pt/

Comandos usados

az login

# criar o resource group...
az group create --name alpha-quote-rg --location eastus

# criar o storage account
az storage account create --name alphaquotestorage --location eastus --resource-group alpha-quote-rg --sku Standard_LRS

# criar a function app
az functionapp create --name alphaquotefuncapp --resource-group alpha-quote-rg --storage-account alphaquotestorage --consumption-plan-location eastus --runtime dotnet --functions-version 4 --os-type Windows

# testar se foi criado
az functionapp list --resource-group alpha-quote-rg --output table

# publicar a functionapp...
func azure functionapp publish alphaquotefuncapp

# publicar app settings...
az functionapp config appsettings set --name alphaquotefuncapp --resource-group alpha-quote-rg --settings "RESEND_API_KEY=seu_valor_aqui" "ALPHA_VANTAGE_API_KEY=seu_valor_aqui"

# deletar tudo o que foi criado...
az group delete --name alpha-quote-rg

# listar e exibir recursos
az resource list --resource-group alpha-quote-rg --output table
az resource show --name <nome> --resource-group alpha-quote-rg

Tecnologias e Tags

Compartilhe este Vídeo

Vídeos Relacionados

Outras Playlists Relacionadas