-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy path.env.local
More file actions
31 lines (27 loc) · 958 Bytes
/
Copy path.env.local
File metadata and controls
31 lines (27 loc) · 958 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
NODE_ENV=development
VERCEL_ENV=development
PORT=3010
# API 모킹 비활성화 (실제 백엔드 사용)
API_MOCKING=disabled
# 게이트웨이 URL
# 개발 서버: https://api.memonogi.com
# Docker 컨테이너 내부 (같은 네트워크): http://devnogi-gateway-app-local:8090
# Docker 컨테이너 내부 (다른 네트워크): http://host.docker.internal:8090
# 로컬 개발: http://168.107.43.221:8080 또는 http://localhost:8090
GATEWAY_URL=https://api.memonogi.com
# React 리소스 제한
# Next.js 개발 서버는 컴파일 시 메모리를 많이 사용하므로 최소 1g 권장
DOCKER_MEMORY_LIMIT=1g
DOCKER_MEMORY_RESERVATION=512m
RESTART_POLICY_MAX_RETRIES=3
HEALTHCHECK_INTERVAL=30s
HEALTHCHECK_TIMEOUT=10s
HEALTHCHECK_RETRIES=3
HEALTHCHECK_START_PERIOD=60s
LOGGING_MAX_SIZE=10m
LOGGING_MAX_FILE=3
AUTOHEAL_INTERVAL=30
AUTOHEAL_START_PERIOD=0
AUTOHEAL_DEFAULT_STOP_TIMEOUT=10
AUTOHEAL_MEMORY_LIMIT=50m
AUTOHEAL_MEMORY_RESERVATION=20m