using WebServer.Components; using Controllers.PythonInterop; using Controllers.DataBase; using Controllers.Payment; // Load the module in globally and use correct path for local or docker runners #if DEBUG AIModule interopModule = new AIModule(PythonPathBase: "/usr/", PythonVersion: "python3.11"); #else AIModule interopModule = new AIModule(); #endif if (args.Contains("Pull-Stock-Data")) { interopModule.TrainAI(); } else { // Create the webapp var builder = WebApplication.CreateBuilder(args); // Add services to the container. builder.Services.AddRazorComponents().AddInteractiveServerComponents(); // Insert the DB driver for Dependency Injection builder.Services.AddScoped(); // Insert the payment Processor builder.Services.AddSingleton( new PaymentTestor() // Of type Payment Testor -> Change this with stripe or square in the future ); // Insert the python modlue for Dependency Injection builder.Services.AddSingleton(interopModule); // Build the app 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(); } // Conffigure policies app.UseHttpsRedirection(); app.UseAntiforgery(); app.MapStaticAssets(); app.MapRazorComponents().AddInteractiveServerRenderMode(); // Start the web app app.Run(); }