feat: 자산관리 시스템 도커 운영 배포 환경 및 CI/CD 구축 #21

Merged
b24014 merged 5 commits from feature/docker-deploy into main 2026-06-19 10:50:17 +09:00
Showing only changes of commit d54997cd55 - Show all commits

View File

@@ -15,6 +15,19 @@ jobs:
- name: Checkout code
uses: actions/checkout@v4
- name: Prepare CI env file
run: |
cat <<'EOF' > .env
DB_HOST=127.0.0.1
DB_PORT=3306
DB_USER=itam_ci
DB_PASS=itam_ci_password
DB_NAME=itam
NODE_ENV=production
PORT=3000
LOG_LEVEL=info
EOF
- name: Setup Node.js
uses: actions/setup-node@v4
with: