# Test Environment Configuration NODE_ENV=test # Database (PostgreSQL) DATABASE_URL=postgresql://postgres:test_password@localhost:5432/test_d8dai # Server PORT=8080 HOST=localhost # JWT Secret (for testing) JWT_SECRET=test_jwt_secret_1234567890 # Session SESSION_SECRET=test_session_secret_1234567890 # CORS CORS_ORIGIN=http://localhost:8080 # Logging LOG_LEVEL=info # Feature Flags ENABLE_SWAGGER=true ENABLE_GRAPHQL=false # Test Data TEST_ADMIN_USERNAME=admin TEST_ADMIN_PASSWORD=admin123 TEST_USER_USERNAME=testuser TEST_USER_PASSWORD=test123