Merge pull request #54 from Rick-Anderson/patch-4

Update README.md
This commit is contained in:
James Montemagno 2024-05-08 20:56:35 -07:00 committed by GitHub
commit 8b4bf9bc41
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -113,7 +113,7 @@ Use Swagger to ensure that you have a self-documenting API, where the docs chang
{
app.UseDeveloperExceptionPage();
app.UseSwagger();
app.UseSwaggerUI(c =>
app.UseSwaggerUI(c => // UseSwaggerUI Protected by if (env.IsDevelopment())
{
c.SwaggerEndpoint("/swagger/v1/swagger.json", "PizzaStore API V1");
});
@ -128,7 +128,7 @@ Use Swagger to ensure that you have a self-documenting API, where the docs chang
- The `using` statement at the top makes it easier to use the *Swashbuckle* package without having to type out long namespaces for the commands.
- The two `builder.Services.Add` lines add the two services that *Swashbuckle* needs to generate the documentation.
- The `UseSwagger` and `UseSwaggerUI` lines add the Swagger and Swagger UI endpoints.
- The `UseSwagger` and `UseSwaggerUI` lines add the Swagger and Swagger UI endpoints. UseSwaggerUI is called only in development.
1. Rerun the project and go to the app's address, `http://localhost:{PORT}/swagger`.