-
Couldn't load subscription status.
- Fork 168
Labels
📌 seQUESTeredIdentifies that an issue has been imported into Quest.Identifies that an issue has been imported into Quest.area-docs
Milestone
Description
Describe the issue or suggestion
The ordering of content in the storage docs should be different. For Blob storage for example, the doc is specific to blob storage but we don't show the code sample of how to add and reference blob storage until nearly the end. You need to go through a bunch of content on Bicep and other advanced config options before you see it.
This code is what I wanted and it was almost at the end of the doc
var builder = DistributedApplication.CreateBuilder(args);
var blobs = builder.AddAzureStorage("storage")
.RunAsEmulator()
.AddBlobs("blobs");
builder.AddProject<Projects.ExampleProject>()
.WithReference(blobs)
.WaitFor(blobs);
// After adding all resources, run the app...Since we use the same pattern for the other storage docs this applies to those as well.
Metadata
Metadata
Assignees
Labels
📌 seQUESTeredIdentifies that an issue has been imported into Quest.Identifies that an issue has been imported into Quest.area-docs