Homepage Redesign

This commit is contained in:
Eric Gullickson
2025-11-03 14:06:54 -06:00
parent 54d97a98b5
commit eeb20543fa
71 changed files with 3925 additions and 1340 deletions

View File

@@ -41,17 +41,6 @@ const configSchema = z.object({
audience: z.string(),
}),
// Platform services configuration
platform: z.object({
services: z.object({
vehicles: z.object({
url: z.string(),
timeout: z.string(),
}),
}),
}),
// External APIs configuration
external: z.object({
vpic: z.object({
@@ -147,7 +136,6 @@ export interface AppConfiguration {
getDatabaseUrl(): string;
getRedisUrl(): string;
getAuth0Config(): { domain: string; audience: string; clientSecret: string };
getPlatformVehiclesUrl(): string;
}
class ConfigurationLoader {
@@ -237,10 +225,6 @@ class ConfigurationLoader {
clientSecret: secrets.auth0_client_secret,
};
},
getPlatformVehiclesUrl(): string {
return config.platform.services.vehicles.url;
},
};
logger.info('Configuration loaded successfully', {