- Fix sidebar layout: use flexbox instead of margin-left approach - Update sidebar to use responsive display (hidden on mobile, static on desktop) - Fix mobile overlay z-index and positioning issues - Add proper flex container structure to all pages - Add new dashboard pages: health, metrics, system, env, code-quality, settings/cosmos - Add comprehensive API client and type definitions - Add error boundary and log viewer components - Add test infrastructure with Vitest and Playwright - Add Docker configuration and deployment scripts Generated with [Devin](https://cli.devin.ai/docs) Co-Authored-By: Devin <158243242+devin-ai-integration[bot]@users.noreply.github.com>
12 lines
536 B
TypeScript
12 lines
536 B
TypeScript
// Local product identity (replaces @bytelyst/config)
|
|
const productIdentity = {
|
|
productId: process.env.NEXT_PUBLIC_PRODUCT_ID || 'bytelyst-devops',
|
|
name: process.env.NEXT_PUBLIC_PRODUCT_NAME || 'ByteLyst DevOps Dashboard',
|
|
};
|
|
|
|
export const devopsApiUrl = process.env.NEXT_PUBLIC_DEVOPS_API_URL || 'http://localhost:4004';
|
|
export const platformUrl = process.env.NEXT_PUBLIC_PLATFORM_URL || 'https://api.bytelyst.com/platform/api';
|
|
|
|
export const productId = productIdentity.productId;
|
|
export const productName = productIdentity.name;
|