public async Task InitDatabaseAndModel() { var dbContext = GetBastardDBContext(); bool newModel = await DbInitialiser.Init(dbContext); if (newModel) { await TrainAndPublishNewModel(); } }
// This method gets called by the runtime. Use this method to configure the HTTP request pipeline. public void Configure(IApplicationBuilder app, IHostingEnvironment env) { DbInitialiser.Init(); if (env.IsDevelopment()) { app.UseBrowserLink(); app.UseDeveloperExceptionPage(); } else { app.UseExceptionHandler("/Home/Error"); } app.UseStaticFiles(); app.UseMvc(routes => { routes.MapRoute( name: "default", template: "{controller=Home}/{action=Index}/{id?}"); }); }