- Add admin-web to docker-compose.yml following trading pattern - Update admin-web Dockerfile with multi-stage build and metadata - Add build metadata (commit SHA, branch, timestamp, author, message) - Add hotcopy deployment script for quick updates - Add unauthorized page and rate limiting library - Add runtime utilities and auto-refresh hook Generated with [Devin](https://cli.devin.ai/docs) Co-Authored-By: Devin <158243242+devin-ai-integration[bot]@users.noreply.github.com>
6 lines
266 B
TypeScript
6 lines
266 B
TypeScript
// Admin web runtime configuration - matches trading web pattern
|
|
export const adminRuntime = {
|
|
productId: process.env.NEXT_PUBLIC_PRODUCT_ID || 'bytelyst-admin',
|
|
platformApiUrl: process.env.NEXT_PUBLIC_PLATFORM_URL || 'https://api.bytelyst.com/platform/api',
|
|
};
|