Merge commit '3d5cd46b154d4d01c0e35b0665f410e3b34e0d68' into feature/negodata

This commit is contained in:
Mina Choi 2026-06-18 16:33:04 +09:00
commit 53b8a78de7
4 changed files with 37 additions and 5 deletions

View File

@ -7,8 +7,8 @@ port = 9300
process_count = 1
is_ssl = false
is_test = true
# CORS 허용 오리진(프론트). 비우면 [] (CORS 미적용). 예: 로컬 Vite = http://localhost:5173
cors_origins = ["http://localhost:5173", "http://127.0.0.1:5173"]
# CORS 허용 오리진(프론트). 비우면 [] (CORS 미적용). 5173=vite dev, 3300=docker 프로덕션 빌드 서빙.
cors_origins = ["http://localhost:5173", "http://127.0.0.1:5173", "http://localhost:3300", "http://127.0.0.1:3300"]
[LogConfig]
print_console = true

View File

@ -4,9 +4,10 @@
# 컨테이너에서 호스트의 DB 에 접속할 때는 host.docker.internal 을 쓴다.
#
# docker compose up -d
# negosium 서버: http://localhost:9300/docs
# negodata 서버: http://localhost:9400/docs
# agent 서버: http://localhost:9500/docs
# negosium 서버: http://localhost:9300/docs
# negosium 프론트: http://localhost:3300
# negodata 서버: http://localhost:9400/docs
# agent 서버: http://localhost:9500/docs
#
# DB 준비(최초 1회): postgres-init 의 SQL 을 대상 DB 에 적용한다.
# psql -h <host> -p <port> -U <user> -f postgres-init/01-schema.sql (단일 negosium_db + 도메인별 schema)
@ -62,3 +63,11 @@ services:
extra_hosts:
- "host.docker.internal:host-gateway"
restart: unless-stopped
# negosium 공급사 프론트 (프로덕션 빌드 정적 서빙, :3300). 브라우저가 backend(:9300)를 직접 호출.
negosium-front:
build: ./frontend
container_name: negosium-front
ports:
- "3300:3300"
restart: unless-stopped

4
frontend/.dockerignore Normal file
View File

@ -0,0 +1,4 @@
node_modules
dist
.git
*.md

19
frontend/Dockerfile Normal file
View File

@ -0,0 +1,19 @@
FROM node:20-alpine
WORKDIR /app
# 의존성 (레이어 캐시)
COPY package.json package-lock.json ./
RUN npm ci
COPY . .
# 프로덕션 빌드. API URL 은 빌드 타임에 번들로 인라인되므로 여기서 주입한다(로컬 도커: backend=localhost:9300).
# npm run build 는 --mode prod → .env.prod 를 읽으므로, 최우선 파일 .env.prod.local 로 덮어쓴다.
ARG VITE_API_BASE_URL=http://localhost:9300
RUN echo "VITE_API_BASE_URL=$VITE_API_BASE_URL" > .env.prod.local && npm run build
EXPOSE 3300
# 빌드 산출물(dist)을 정적 서빙. SPA 라우팅(history fallback)은 vite preview 가 처리.
CMD ["npm", "run", "preview", "--", "--host", "0.0.0.0", "--port", "3300"]