26 lines
608 B
Plaintext
26 lines
608 B
Plaintext
|
|
# AI Assistant API (VEXPLOR 내장) - 환경 변수
|
||
|
|
# 이 파일을 .env 로 복사한 뒤 값 설정
|
||
|
|
|
||
|
|
NODE_ENV=development
|
||
|
|
PORT=3100
|
||
|
|
|
||
|
|
# PostgreSQL (AI 어시스턴트 전용 DB)
|
||
|
|
DB_HOST=localhost
|
||
|
|
DB_PORT=5432
|
||
|
|
DB_USER=ai_assistant
|
||
|
|
DB_PASSWORD=ai_assistant_password
|
||
|
|
DB_NAME=ai_assistant_db
|
||
|
|
|
||
|
|
# JWT
|
||
|
|
JWT_SECRET=your-super-secret-jwt-key-change-in-production
|
||
|
|
JWT_EXPIRES_IN=7d
|
||
|
|
JWT_REFRESH_SECRET=your-refresh-secret-key-change-in-production
|
||
|
|
JWT_REFRESH_EXPIRES_IN=30d
|
||
|
|
|
||
|
|
# LLM (구글 키 등)
|
||
|
|
GEMINI_API_KEY=your-gemini-api-key
|
||
|
|
GEMINI_MODEL=gemini-2.0-flash
|
||
|
|
|
||
|
|
RATE_LIMIT_WINDOW_MS=60000
|
||
|
|
RATE_LIMIT_MAX_REQUESTS=100
|