Merge branch 'feature/screen-management' of http://39.117.244.52:3000/kjs/ERP-node into feature/screen-management

This commit is contained in:
kjs 2025-10-30 18:31:09 +09:00
commit 64068007d5
3 changed files with 14 additions and 10 deletions

View File

@ -45,6 +45,7 @@ services:
environment: environment:
NODE_ENV: production NODE_ENV: production
NEXT_PUBLIC_API_URL: https://api.vexplor.com/api NEXT_PUBLIC_API_URL: https://api.vexplor.com/api
SERVER_API_URL: "http://backend:3001"
NEXT_TELEMETRY_DISABLED: "1" NEXT_TELEMETRY_DISABLED: "1"
PORT: "3000" PORT: "3000"
HOSTNAME: 0.0.0.0 HOSTNAME: 0.0.0.0

View File

@ -20,6 +20,9 @@ services:
- CORS_CREDENTIALS=true - CORS_CREDENTIALS=true
- LOG_LEVEL=info - LOG_LEVEL=info
- ENCRYPTION_KEY=ilshin-plm-mail-encryption-key-32characters-2024-secure - ENCRYPTION_KEY=ilshin-plm-mail-encryption-key-32characters-2024-secure
- KMA_API_KEY=ogdXr2e9T4iHV69nvV-IwA
- ITS_API_KEY=d6b9befec3114d648284674b8fddcc32
- EXPRESSWAY_API_KEY=${EXPRESSWAY_API_KEY:-}
restart: unless-stopped restart: unless-stopped
healthcheck: healthcheck:
test: ["CMD", "curl", "-f", "http://localhost:8080/health"] test: ["CMD", "curl", "-f", "http://localhost:8080/health"]

View File

@ -26,16 +26,16 @@ export function RegistryProvider({ children }: RegistryProviderProps) {
}, []); }, []);
// 초기화 중 로딩 표시 (선택사항) // 초기화 중 로딩 표시 (선택사항)
if (!isInitialized) { // if (!isInitialized) {
return ( // return (
<div className="flex min-h-screen items-center justify-center"> // <div className="flex min-h-screen items-center justify-center">
<div className="flex flex-col items-center space-y-4"> // <div className="flex flex-col items-center space-y-4">
<div className="border-primary h-12 w-12 animate-spin rounded-full border-b-2"></div> // <div className="border-primary h-12 w-12 animate-spin rounded-full border-b-2"></div>
<p className="text-muted-foreground text-sm"> ...</p> // <p className="text-muted-foreground text-sm">시스템 초기화 중...</p>
</div> // </div>
</div> // </div>
); // );
} // }
return <>{children}</>; return <>{children}</>;
} }