Skip to content

Commit 21c0584

Browse files
committed
Readme update
1 parent 6712043 commit 21c0584

File tree

1 file changed

+18
-1
lines changed

1 file changed

+18
-1
lines changed

README.md

Lines changed: 18 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,21 @@
1313

1414
## Quick Start
1515

16-
// TODO
16+
Add `GeneratePostmanData` after Simplify registration and container setup
17+
18+
```csharp
19+
public void Configure(IApplicationBuilder app, IWebHostEnvironment env)
20+
{
21+
if (env.IsDevelopment())
22+
app.UseDeveloperExceptionPage();
23+
24+
app.UseSimplifyWebWithoutRegistrations();
25+
26+
DIContainer.Current.RegisterAll().Verify();
27+
28+
if (env.IsDevelopment())
29+
DIContainer.Current.GeneratePostmanData();
30+
}
31+
```
32+
33+
Postman files will generate in postman folder inside your app folder.

0 commit comments

Comments
 (0)