añade proto back

This commit is contained in:
2025-08-07 16:32:59 +02:00
parent 9b373d1929
commit 11825d7be5
95 changed files with 786 additions and 62491 deletions

37
back/Program.cs Normal file
View File

@@ -0,0 +1,37 @@
using back.ApiService.context;
using Microsoft.EntityFrameworkCore;
namespace back;
public class Program
{
public static void Main(string[] args)
{
var builder = WebApplication.CreateBuilder(args);
// Add services to the container.
builder.Services.AddDbContext<PhotoContext>(options =>options.UseSqlite("Data Source=photos.db"));
builder.Services.AddControllers();
// Learn more about configuring OpenAPI at https://aka.ms/aspnet/openapi
builder.Services.AddSwaggerGen();
var app = builder.Build();
// Configure the HTTP request pipeline.
if (app.Environment.IsDevelopment())
{
app.UseSwagger();
app.UseSwaggerUI();
}
app.UseHttpsRedirection();
app.UseAuthorization();
app.MapControllers();
app.Run();
}
}