KBE5_AntMen_FE/
├── apps/ # Next.js 앱 (사용자/매니저용)
└── admin/ # React 앱 (관리자용)
# 루트 디렉토리에서
yarn install# Next.js 앱 설치
yarn install:apps
# React 앱 설치
yarn install:admin# 루트 디렉토리에서
yarn dev# Next.js 앱 실행 (http://localhost:4000)
yarn dev:apps
# React 앱 실행 (http://localhost:5001)
yarn dev:admin# 루트 디렉토리에서
yarn build# Next.js 앱 빌드
yarn build:apps
# React 앱 빌드
yarn build:admin# 전체 앱 린트 검사
yarn lint# 전체 앱 캐시 정리
yarn clean1. 처음 한 번만 실행: yarn setup-https
2. 이후 개발할 때: yarn dev:apps:https or dev:admin:https
※ 첫 번째 명령어는 개인 PC에서 한 번만 실행하면 됩니다.