-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathStartup.cs
More file actions
162 lines (135 loc) · 5.94 KB
/
Startup.cs
File metadata and controls
162 lines (135 loc) · 5.94 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
using AspNetCoreVueStarter.DataAccess;
using Microsoft.AspNetCore.Builder;
using Microsoft.AspNetCore.Hosting;
using Microsoft.Extensions.Configuration;
using Microsoft.Extensions.DependencyInjection;
using Microsoft.Extensions.Hosting;
using Microsoft.OpenApi.Models;
using System.Text.Json.Serialization;
using VueCliMiddleware;
namespace AspNetCoreVueStarter
{
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.AddSingleton<IConfiguration>(Configuration);
services.AddTransient<UserRepository>();
services.AddTransient<EpisodeRepository>();
services.AddTransient<PodcastRepository>();
services.AddTransient<PlaylistRepository>();
services.AddControllers()
.AddJsonOptions(opts =>
{
var enumConverter = new JsonStringEnumConverter();
opts.JsonSerializerOptions.Converters.Add(enumConverter);
});
services.AddSwaggerGen(c =>
{
c.SwaggerDoc("v1", new OpenApiInfo { Title = "Poddammit", Version = "v1" });
});
}
// This method gets called by the runtime. Use this method to configure the HTTP request pipeline.
public void Configure(IApplicationBuilder app, IWebHostEnvironment env)
{
if (env.IsDevelopment())
{
app.UseDeveloperExceptionPage();
app.UseSwagger();
app.UseSwaggerUI(c => c.SwaggerEndpoint("/swagger/v1/swagger.json", "Poddammit v1"));
}
app.UseCors(cfg => cfg.AllowAnyHeader().AllowAnyMethod().AllowAnyOrigin());
app.UseHttpsRedirection();
app.UseDefaultFiles();
app.UseStaticFiles();
app.UseRouting();
app.UseAuthorization();
app.UseEndpoints(endpoints =>
{
endpoints.MapControllers();
});
}
}
//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.AddControllersWithViews()
// .AddJsonOptions(opts =>
// {
// var enumConverter = new JsonStringEnumConverter();
// opts.JsonSerializerOptions.Converters.Add(enumConverter);
// });
// // Add AddRazorPages if the app uses Razor Pages.
// // services.AddRazorPages();
// // In production, the Vue files will be served from this directory
// services.AddSpaStaticFiles(configuration =>
// {
// configuration.RootPath = "ClientApp/dist";
// });
// }
// // This method gets called by the runtime. Use this method to configure the HTTP request pipeline.
// public void Configure(IApplicationBuilder app, IWebHostEnvironment env)
// {
// _ = CommandLine.Arguments.TryGetOptions(System.Environment.GetCommandLineArgs(), false, out string mode, out ushort port, out bool https);
// if (env.IsDevelopment())
// {
// app.UseDeveloperExceptionPage();
// //app.UseSwagger();
// //app.UseSwaggerUI(c => c.SwaggerEndpoint("/swagger/v1/swagger.json", "scapegoat v1"));
// }
// else
// {
// app.UseExceptionHandler("/Error");
// // The default HSTS value is 30 days. You may want to change this for production scenarios, see https://aka.ms/aspnetcore-hsts.
// app.UseHsts();
// }
// if (https) app.UseHttpsRedirection();
// app.UseStaticFiles();
// if (!env.IsDevelopment())
// {
// app.UseSpaStaticFiles();
// }
// app.UseRouting();
// app.UseEndpoints(endpoints =>
// {
// endpoints.MapControllerRoute(
// name: "default",
// pattern: "{controller}/{action=Index}/{id?}");
// // Add MapRazorPages if the app uses Razor Pages. Since Endpoint Routing includes support for many frameworks, adding Razor Pages is now opt -in.
// // endpoints.MapRazorPages();
// });
// app.UseSpa(spa =>
// {
// // To learn more about options for serving an Angular SPA from ASP.NET Core,
// // see https://go.microsoft.com/fwlink/?linkid=864501
// spa.Options.SourcePath = "ClientApp";
// if (env.IsDevelopment())
// {
// // run npm process with client app
// if (mode == "start") {
// spa.UseVueCli(npmScript: "serve", port: port, forceKill: true, https: https);
// }
// // if you just prefer to proxy requests from client app, use proxy to SPA dev server instead,
// // app should be already running before starting a .NET client:
// // run npm process with client app
// if (mode == "attach") {
// spa.UseProxyToSpaDevelopmentServer($"{(https ? "https" : "http")}://localhost:{port}"); // your Vue app port
// }
// }
// });
// }
//}
}