23 lines
616 B
TypeScript
23 lines
616 B
TypeScript
export const productConfig = {
|
|
productId: 'invttrdg',
|
|
displayName: 'ByteLyst Trading',
|
|
description: 'AI-assisted trading operations across web, mobile, and backend',
|
|
domain: 'trading.bytelyst.ai',
|
|
backendPort: 4018,
|
|
bundleId: {
|
|
ios: 'com.bytelyst.trading',
|
|
android: 'com.bytelyst.trading',
|
|
},
|
|
platforms: ['web', 'ios', 'android'],
|
|
primarySurface: 'web',
|
|
mobileCompanion: true,
|
|
licensePrefix: 'TRADING',
|
|
configDirName: '.ByteLystTrading',
|
|
envVarPrefix: 'TRADING',
|
|
packageName: 'bytelyst-trading',
|
|
version: '0.1.0',
|
|
} as const;
|
|
|
|
export type ProductConfig = typeof productConfig;
|
|
|