O2Sound_ver2_final/backend/.env.test

55 lines
1.6 KiB
Plaintext

# Test Database Configuration
TEST_DATABASE_URL=postgresql://postgres:postgres@localhost:5432/test_o2sound
# Test Environment - local로 설정
ENVIRONMENT=local
BE_ENV=local
# Redis (for testing)
REDIS_URL=redis://localhost:6379/1
# JWT Secret (for testing)
JWT_SECRET_KEY=test_secret_key_for_testing_only
JWT_ALGORITHM=HS256
JWT_EXPIRATION_MINUTES=60
# Application Settings (for testing)
PROJECT_NAME=O2Sound Test
VERSION=1.0.0
DEBUG=True
# Celery (for testing)
CELERY_BROKER_URL=redis://localhost:6379/1
CELERY_RESULT_BACKEND=redis://localhost:6379/1
# Google OAuth (for testing - use dummy values)
GOOGLE_CLIENT_ID=test_google_client_id
GOOGLE_CLIENT_SECRET=test_google_client_secret
GOOGLE_REDIRECT_URI=http://localhost:8000/api/v1/social/google/callback
# 테스트용 환경변수 (LocalConfig에 필요한 필드들)
CRYPTO_SECRET_KEY=test_crypto_secret_key
DATABASE_USERNAME=postgres
DATABASE_PASSWORD=postgres
DATABASE_ADDRESS=localhost:5432
DATABASE_NAME=test_o2sound
DATABASE_AUTO_COMMIT=true
DATABASE_AUTO_FLUSH=true
REDIS_HOST=localhost
REDIS_PORT=6379
REDIS_DB=1
KAKAO_REST_API_KEY=test_kakao_api_key
KAKAO_CLIENT_SECRET_KEY=test_kakao_secret
KAKAO_REDIRECT_URL=http://localhost:8000/kakao/callback
GOOGLE_CLIENT_ID=test_google_client_id
GOOGLE_CLIENT_SECRET=test_google_client_secret
GOOGLE_API_KEY=test_google_api_key
SESSION_SECRET_KEY=test_session_secret
OPENAI_API_KEY=test_openai_api_key
USEAPINET_API_TOKEN=test_useapi_token
MUREAKA_SESSION_TOKEN=test_mureaka_session
MUREAKA_USER_ID=test_mureaka_user
API_V1_STR=/api/v1
PROJECT_NAME=O2Sound Test
RedisManager_URL=redis://localhost:6379/1