test274/Program.cs
greyn c4c375a440
Some checks are pending
gitea.arg.rip/test274/pipeline/head Build queued...
Initial commit
2025-03-24 22:59:29 -04:00

53 lines
1.4 KiB
C#

using test274;
using test274.Components;
using test274.Models;
var conf = greyn.Deployment.Configurator<test274.Configuration>.Load();
Shared.DBConnectionString = conf.DBConnectionString;
Console.WriteLine(Shared.DBConnectionString);
var builder = WebApplication.CreateBuilder(args);
// Add services to the container.
builder.Services.AddRazorComponents()
.AddInteractiveServerComponents();
builder.Services.AddAuthorization();
builder.Services.AddEndpointsApiExplorer();
builder.Services.AddSwaggerGen();
var app = builder.Build();
// Configure the HTTP request pipeline.
if (!app.Environment.IsDevelopment())
{
app.UseExceptionHandler("/Error", createScopeForErrors: true);
// The default HSTS value is 30 days. You may want to change this for production scenarios, see https://aka.ms/aspnetcore-hsts.
app.UseHsts();
}
app.UseSwagger();
app.UseSwaggerUI();
app.UseHttpsRedirection();
app.UseStaticFiles();
app.UseAntiforgery();
app.MapGet("/hi", () => {
var db = new greynsvcDBContext();
var greetcount = db.Greets.FirstOrDefault();
if(greetcount == null)
{
greetcount = new GreetCounter();
db.Greets.Add(greetcount);
}
greetcount.Amount++;
db.SaveChanges();
return $"hello number {greetcount.Amount}";
}).WithName("hi").WithOpenApi();
app.MapRazorComponents<App>()
.AddInteractiveServerRenderMode();
app.Run();