From 0ef93b94dccca1d4dcfddcd6c0d896eac1fc773e Mon Sep 17 00:00:00 2001 From: Victor Hurdugaci Date: Wed, 15 Oct 2014 15:38:29 -0700 Subject: [PATCH] Add the runtime info page when running in dev environment --- src/MusicStore/Startup.cs | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/MusicStore/Startup.cs b/src/MusicStore/Startup.cs index 61db98a047..2397fff859 100644 --- a/src/MusicStore/Startup.cs +++ b/src/MusicStore/Startup.cs @@ -104,6 +104,12 @@ namespace MusicStore //Display custom error page in production when error occurs //During development use the ErrorPage middleware to display error information in the browser app.UseErrorPage(ErrorPageOptions.ShowAll); + + // Add the runtime information page that can be used by developers + // to see what packages are used by the application + // default path is: /runtimeinfo + app.UseRuntimeInfoPage(); + Configure(app); }