deploy/README.md: - 접속 정보 섹션 추가 (URL, 데모 계정, DB) - CI/CD 섹션: 프론트 자동(Gitea Actions), 백엔드/prediction 수동 - 서버별 실행 경로 정리 (rocky-211, redis-211) .gitea/workflows/deploy.yml: - 모노레포 구조 반영 (working-directory: frontend) - paths 필터: frontend/** 변경 시만 트리거 CLAUDE.md: - 모노레포 구조에 prediction/, deploy/, .gitea/ 추가 - 배포 환경 섹션 추가 (서버/포트/관리 방법) Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
43 lines
1.1 KiB
YAML
43 lines
1.1 KiB
YAML
name: Build and Deploy KCG AI Monitoring (Frontend)
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
paths:
|
|
- 'frontend/**'
|
|
|
|
jobs:
|
|
build-and-deploy:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Setup Node.js
|
|
uses: actions/setup-node@v4
|
|
with:
|
|
node-version: '24'
|
|
|
|
- name: Configure npm registry
|
|
working-directory: frontend
|
|
run: |
|
|
echo "registry=https://nexus.gc-si.dev/repository/npm-public/" > .npmrc
|
|
echo "//nexus.gc-si.dev/repository/npm-public/:_auth=${{ secrets.NEXUS_NPM_AUTH }}" >> .npmrc
|
|
|
|
- name: Install dependencies
|
|
working-directory: frontend
|
|
run: npm ci --legacy-peer-deps
|
|
|
|
- name: Build
|
|
working-directory: frontend
|
|
run: npm run build
|
|
|
|
- name: Deploy to server
|
|
run: |
|
|
mkdir -p /deploy/kcg-ai-monitoring
|
|
rm -rf /deploy/kcg-ai-monitoring/*
|
|
cp -r frontend/dist/* /deploy/kcg-ai-monitoring/
|
|
echo "Frontend deployed at $(date '+%Y-%m-%d %H:%M:%S')"
|
|
ls -la /deploy/kcg-ai-monitoring/
|