21 lines
534 B
Plaintext
21 lines
534 B
Plaintext
|
|
# FactoryOps v2 환경 변수
|
||
|
|
|
||
|
|
# PostgreSQL 연결 (필수)
|
||
|
|
DATABASE_URL=postgresql+asyncpg://factoryops:factoryops@localhost:5432/factoryops_v2
|
||
|
|
|
||
|
|
# 테스트 DB
|
||
|
|
TEST_DATABASE_URL=postgresql+asyncpg://factoryops:factoryops@localhost:5432/factoryops_v2_test
|
||
|
|
|
||
|
|
# SQL 쿼리 로깅 (디버깅용)
|
||
|
|
# SQL_ECHO=true
|
||
|
|
|
||
|
|
# JWT 시크릿 키 (프로덕션에서 반드시 변경)
|
||
|
|
JWT_SECRET_KEY=your-super-secret-key-change-in-production
|
||
|
|
|
||
|
|
# 서버 설정
|
||
|
|
HOST=0.0.0.0
|
||
|
|
PORT=8000
|
||
|
|
|
||
|
|
# 프론트엔드 API URL
|
||
|
|
NEXT_PUBLIC_API_URL=http://localhost:8000
|