From ce81b993fd271be9552799eabb324d5c7ca1c5bb Mon Sep 17 00:00:00 2001 From: Aryadev Chavali Date: Sun, 10 Feb 2019 23:03:55 +0000 Subject: Made project for ASP.NET server --- Server/Startup.cs | 41 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 41 insertions(+) create mode 100644 Server/Startup.cs (limited to 'Server/Startup.cs') diff --git a/Server/Startup.cs b/Server/Startup.cs new file mode 100644 index 0000000..08d1df4 --- /dev/null +++ b/Server/Startup.cs @@ -0,0 +1,41 @@ +using System; +using System.Collections.Generic; +using Microsoft.AspNetCore.Builder; +using Microsoft.AspNetCore.Hosting; +using Microsoft.AspNetCore.Http; +using Microsoft.Extensions.Configuration; +using Microsoft.Extensions.DependencyInjection; + +namespace Server { + public class Startup { + public Startup(IConfiguration configuration) { + Configuration = configuration; + } + + public IConfiguration Configuration { get; } + + // This method gets called by the runtime. Use this method to add services to the container. + public void ConfigureServices(IServiceCollection services) { + services.Configure(options => { + // This lambda determines whether user consent for non-essential cookies is needed for a given request. + options.CheckConsentNeeded = context => true; + options.MinimumSameSitePolicy = SameSiteMode.None; + }); + } + + // 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(); + } + else { + app.UseExceptionHandler("/Error"); + app.UseHsts(); + } + + app.UseHttpsRedirection(); + app.UseStaticFiles(); + app.UseCookiePolicy(); + } + } +} -- cgit v1.2.3-13-gbd6f From 9ea5adbe56de3d3b708ab5f90f786d18670e4643 Mon Sep 17 00:00:00 2001 From: Aryadev Chavali Date: Sun, 10 Feb 2019 23:28:14 +0000 Subject: setup basic configuration for index.html --- Server/Startup.cs | 17 ++++++++++++----- 1 file changed, 12 insertions(+), 5 deletions(-) (limited to 'Server/Startup.cs') diff --git a/Server/Startup.cs b/Server/Startup.cs index 08d1df4..93bae2d 100644 --- a/Server/Startup.cs +++ b/Server/Startup.cs @@ -1,10 +1,17 @@ using System; using System.Collections.Generic; + using Microsoft.AspNetCore.Builder; using Microsoft.AspNetCore.Hosting; using Microsoft.AspNetCore.Http; using Microsoft.Extensions.Configuration; using Microsoft.Extensions.DependencyInjection; +using Microsoft.EntityFrameworkCore; +using Microsoft.EntityFrameworkCore.Metadata; + +using Classes; +using Database; +using Aggregator.Parser; namespace Server { public class Startup { @@ -14,16 +21,17 @@ namespace Server { public IConfiguration Configuration { get; } - // This method gets called by the runtime. Use this method to add services to the container. public void ConfigureServices(IServiceCollection services) { services.Configure(options => { - // This lambda determines whether user consent for non-essential cookies is needed for a given request. options.CheckConsentNeeded = context => true; options.MinimumSameSitePolicy = SameSiteMode.None; }); + + services.AddDbContext(options => { + options.UseMySQL(Configuration.GetConnectionString("connectionString")); + }); } - // 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(); @@ -33,9 +41,8 @@ namespace Server { app.UseHsts(); } - app.UseHttpsRedirection(); + app.UseDefaultFiles(); app.UseStaticFiles(); - app.UseCookiePolicy(); } } } -- cgit v1.2.3-13-gbd6f