Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/davidfowl/build2024aspiredemo
https://github.com/davidfowl/build2024aspiredemo
Last synced: 24 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/davidfowl/build2024aspiredemo
- Owner: davidfowl
- Created: 2024-05-21T06:49:31.000Z (7 months ago)
- Default Branch: main
- Last Pushed: 2024-05-23T05:38:49.000Z (7 months ago)
- Last Synced: 2024-05-23T06:35:48.559Z (7 months ago)
- Language: HTML
- Size: 178 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Aspire Demo for BUILD 2024
This demo shows building a custom resource, using local azure provisioning for service bus and
deployment to azure.## Setup
To get this repo running you'll need a few setup steps outlined below.### Azure Prerequisites
Specify an Azure account for the Service Bus setup and to configure your subscription information following the [Configuration section in Local Azure provisioning documentation](https://learn.microsoft.com/en-us/dotnet/aspire/deployment/azure/local-provisioning#configuration).### Parameter resource values
Some Parameter values are required for a few resources. Add these to your user-secrets in the `Parameters` section.#### Postgres database password
Create a user secrets in the AppHost project for the Postgres password:```
"Parameters": {
"postgrespass": "your-password-of-choice"
}
```#### Email 'from address'
Create a user secrets in the AppHost project for the email 'from' address:```
"Parameters": {
"frommail": "[email protected]"
}
```