10 lines
332 B
Bash
10 lines
332 B
Bash
# AI 설정 (Gemini API Key 및 모델명)
|
|
AI_API_KEY=YOUR_GEMINI_API_KEY_HERE
|
|
AI_MODEL=gemini-2.5-flash-little
|
|
|
|
# 서버 포트
|
|
PORT=4000
|
|
|
|
# 로컬 테스트용 MySQL 접속 URL (Docker Compose 환경에서는 docker-compose.yml의 environment가 우선 적용됨)
|
|
DATABASE_URL=mysql://kiduser:kidpassword@localhost:3306/kid_diary
|