Prerequisites:
- Dotnet core 3.1
- Azure Functions 3.0
Deploy Steps:
The following deploys the Azure Function Apps. Ensure you are in e2e_samples/temperature_events/functions/
.
az login
- Deploy
DeviceIdFilter
usingfunc
cli - Deploy
TemperatureFilter
usingfunc
cli
- Assuming infra was deployed to Azure via Terraform.
- Check the Infra README for details.
- If you need to install the
Azure Functions Core Tools
, see theGitHub
README
# NOTE: Be sure to set MY_APP=myapp to what you set in the Infra setup
# e.g. MY_APP=bob2
# Deploy to Azure
az login
cd TemperatureEventsProj
MY_APP=myapp
func azure functionapp publish func-DeviceIdFilter-${MY_APP}-dev --csharp
func azure functionapp publish func-TemperatureFilter-${MY_APP}-dev --csharp