-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathProgram.cs
68 lines (52 loc) · 1.65 KB
/
Program.cs
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
using Microsoft.OpenApi.Models;
using p_designer.entities;
using p_designer.services;
using Swashbuckle.AspNetCore.SwaggerUI;
var options = new WebApplicationOptions()
{
ContentRootPath = Directory.GetCurrentDirectory(),
WebRootPath = Path.Combine("static"),
};
var builder = WebApplication.CreateBuilder(options);
// Add services to the container.
builder.Services.AddControllers();
// Learn more about configuring Swagger/OpenAPI at https://aka.ms/aspnetcore/swashbuckle
builder.Services.AddEndpointsApiExplorer();
builder.Services.AddSwaggerGen();
builder.Services.AddDbContext<PDesignerContext>();
builder.Services.AddTransient<DictionaryService>();
builder.Services.AddTransient<PatternService>();
builder.Services.AddSwaggerGen(c =>
{
c.SwaggerDoc("v1", new OpenApiInfo { Title = "p-designer", Version = "v1" });
c.CustomSchemaIds(type => type.ToString());
c.EnableAnnotations();
});
var app = builder.Build();
// Configure the HTTP request pipeline.
app.UseSwagger();
app.UseSwaggerUI(x =>
{
x.SwaggerEndpoint("/swagger/v1/swagger.json", "p-designer API v1");
x.DefaultModelExpandDepth(3);
x.DefaultModelRendering(ModelRendering.Example);
x.DefaultModelsExpandDepth(-1);
x.DisplayOperationId();
x.DisplayRequestDuration();
x.DocExpansion(docExpansion: DocExpansion.None);
x.EnableDeepLinking();
x.EnableFilter();
x.ShowExtensions();
});
app.UseStaticFiles();
app.UseHttpsRedirection();
app.UseRouting();
app.UseEndpoints(endpoints =>
{
endpoints.MapGet("/", async context =>
{
await Task.Run(() => context.Response.Redirect("index.html"));
});
});
app.MapControllers();
app.Run();