Files
mixtape/zero.Demo/Program.cs
T
2021-12-29 01:25:35 +01:00

73 lines
2.1 KiB
C#

using zero;
using zero.Api;
using zero.Applications;
using zero.Architecture;
using zero.Backoffice;
using zero.Backoffice.DevServer;
using zero.Commerce;
using zero.Configuration;
using zero.Demo;
using zero.Localization;
using zero.Routing;
using zero.Spaces;
using zero.Stores;
var builder = WebApplication.CreateBuilder(args);
builder.Services.AddRazorPages();
builder.Services.AddTransient<IApplicationResolverHandler, DevApplicationResolverHandler>();
builder.Services
.AddZero(builder.Configuration, cfg =>
{
cfg.Mvc.AddApplicationPart(typeof(CommercePlugin).Assembly);
})
.AddApi()
.AddBackoffice()
.AddCommerce();
builder.Services.Configure<ZeroDevOptions>(opts =>
{
opts.Enabled = false;
});
builder.Services.Configure<FlavorOptions>(opts =>
{
opts.AddSpaceList<TeamMember>("team", "Team", "Members of our team", "fth-users", "spaces.team");
opts.AddIntegration<FathomAnalyticsIntegration>("analytics.fathom", "Fathom Analytics", "Connect your website to Fathom and track page views", tags: new() { "analytics" }, imagePath: "/assets/fathom.png");
opts.AddIntegration<GoogleAnalyticsIntegration>("analytics.google", "Google Analytics", "Connect your website to google analytics", tags: new() { "analytics" }, imagePath: "/assets/googleanalytics.png");
opts.Configure<Country>(x => x.CanUseWithoutFlavors = false);
opts.Add<Country, EuropeanCountry>("eu_country", "EU country", "A country within the European Union", "fth-globe");
opts.Add<Country, AmericanCountry>("usa_country", "USA", "A country in the United States", "fth-flag");
});
builder.Services.Configure<BlueprintOptions>(opts =>
{
opts.Add<Country>();
opts.Add<Language>();
opts.Add<Translation>();
});
var app = builder.Build();
// Configure the HTTP request pipeline.
if (!app.Environment.IsDevelopment())
{
app.UseExceptionHandler("/Error");
}
app.UseZero().WithEndpoints(x =>
{
//x.MapControllerRoute("default", "api/{controller}/{action=Index}/{id?}");
x.MapControllers();
x.MapRazorPages();
x.MapZeroApi();
x.MapZeroBackoffice();
x.MapZeroRoutes();
});
//app.UseZeroBackoffice();
app.Run();