We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6712043 commit 21c0584Copy full SHA for 21c0584
README.md
@@ -13,4 +13,21 @@
13
14
## Quick Start
15
16
-// TODO
+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
29
+ DIContainer.Current.GeneratePostmanData();
30
+}
31
+```
32
33
+Postman files will generate in postman folder inside your app folder.
0 commit comments