Skip to content

Instantly share code, notes, and snippets.

@ngohungphuc
Created December 11, 2018 08:43
Show Gist options
  • Save ngohungphuc/017ba86b36b9c54ed4a9dc6ea72a1b53 to your computer and use it in GitHub Desktop.
Save ngohungphuc/017ba86b36b9c54ed4a9dc6ea72a1b53 to your computer and use it in GitHub Desktop.
// This method gets called by the runtime. Use this method to configure the HTTP request pipeline.
public void Configure(IApplicationBuilder app, IHostingEnvironment env)
{
if (env.IsDevelopment())
{
app.UseDeveloperExceptionPage();
}
InitializeDbTestData(app);
app.UseIdentityServer();
app.UseStaticFiles();
app.UseMvcWithDefaultRoute();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment