2026-01-06 15:42:41 +00:00
|
|
|
// Gatehouse Configuration
|
|
|
|
|
// Environment-specific settings for the application
|
|
|
|
|
|
|
|
|
|
export const config = {
|
|
|
|
|
// API Configuration
|
|
|
|
|
api: {
|
2026-01-06 15:45:46 +00:00
|
|
|
baseUrl: import.meta.env.VITE_API_BASE_URL || "http://127.0.0.1:8888/api/v1",
|
2026-01-06 15:42:41 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
|
|
// App metadata
|
|
|
|
|
app: {
|
2026-01-06 15:45:46 +00:00
|
|
|
name: "Gatehouse",
|
|
|
|
|
description: "Identity & Access Platform",
|
2026-01-06 15:42:41 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
|
|
// Feature flags
|
|
|
|
|
features: {
|
|
|
|
|
devTools: import.meta.env.DEV,
|
|
|
|
|
},
|
|
|
|
|
} as const;
|