- 37개 파일 IP → zioinfo.co.kr 치환 (소스/매뉴얼/설정/하네스) - Manager DrConsole/NetworkConsole/CsapConsole 빌드 + /var/www/manager/ 배포 - 테스트: Manager HTTP 200, ITSM 신규 API 7개 전체 200 Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
36 lines
881 B
TypeScript
36 lines
881 B
TypeScript
import Constants from 'expo-constants'
|
|
|
|
export const API_BASE = Constants.expoConfig?.extra?.guardiaApiUrl ?? 'https://zioinfo.co.kr:8443'
|
|
|
|
export const COLORS = {
|
|
primary: '#1a3a6b',
|
|
accent: '#4f6ef7',
|
|
light: '#e8ecff',
|
|
bg: '#f0f2f5',
|
|
card: '#ffffff',
|
|
border: '#e2e8f0',
|
|
text: '#1e293b',
|
|
muted: '#64748b',
|
|
success: '#22c55e',
|
|
warning: '#f59e0b',
|
|
danger: '#ef4444',
|
|
gnbBg: '#1a1d2e',
|
|
white: '#ffffff',
|
|
} as const
|
|
|
|
export const PRIORITY_COLOR: Record<string, string> = {
|
|
CRITICAL: '#ef4444',
|
|
HIGH: '#f59e0b',
|
|
MEDIUM: '#4f6ef7',
|
|
LOW: '#22c55e',
|
|
}
|
|
|
|
export const STATUS_COLOR: Record<string, string> = {
|
|
RECEIVED: '#94a3b8',
|
|
IN_PROGRESS: '#4f6ef7',
|
|
PENDING_APPROVAL: '#f59e0b',
|
|
COMPLETED: '#22c55e',
|
|
FAILED_ROLLBACK: '#ef4444',
|
|
REJECTED: '#dc2626',
|
|
}
|