Aspire: Add README for Aspire AppHost setup and usage#7646
Conversation
|
@justindbaur sorry for the additional pings. Adding you to make sure it's okay to add a Readme at the project level. |
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## main #7646 +/- ##
==========================================
- Coverage 59.84% 59.84% -0.01%
==========================================
Files 2121 2121
Lines 93460 93460
Branches 8291 8291
==========================================
- Hits 55932 55931 -1
- Misses 35547 35548 +1
Partials 1981 1981 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
| dotnet user-secrets set "Services:admin:BasePort" "62911" | ||
| dotnet user-secrets set "Services:api:BasePort" "4000" | ||
| dotnet user-secrets set "Services:billing:BasePort" "44519" | ||
| dotnet user-secrets set "Services:identity:BasePort" "33656" | ||
| dotnet user-secrets set "Services:notifications:BasePort" "61840" |
There was a problem hiding this comment.
I think I missed this in the original review, I knew you did an empty string but I thought I saw something about it resolving from launchSettings.json by default? Why shouldn't these already be set in appsettings.Development.json?
There was a problem hiding this comment.
We had the URIs defined in secrets.json previously. I wasn't sure if we wanted them in settings. I don't see any harm in having them in appsettings, I was just a bit wary. Addressed in fecfa8e
| Runs the web client alongside the server services. Requires the Bitwarden | ||
| [clients](https://github.com/bitwarden/clients) repo cloned as a sibling to `server`. | ||
|
|
||
| 1. Enable the plugin in `AppHost.csproj`: |
There was a problem hiding this comment.
The way I would recommend doing this would be you'd create your own AppHost.csproj.user file and put these property values there. That way you don't have to remember to not commit them.
There was a problem hiding this comment.
This is dope. I wasn't familiar with the user copy. Addressed in 06413de
|
|
Thank you @sbrown-livefront! |



🎟️ Tracking
N/A
📔 Objective
Adds Readme on how to use Aspire locally.