1# Test Database Environment Configuration
2# This file provides database credentials for testing discriminant improvements
3
4# Database Configuration
5DB_USER=postgres
6DB_PASSWORD=testpass123
7DB_NAME=teal_test
8
9# Docker Database URL (used by services in compose)
10DOCKER_DB_URL=postgres://postgres:testpass123@postgres:5432/teal_test
11
12# Local Database URL (used by migration tools and local testing)
13DATABASE_URL=postgres://postgres:testpass123@localhost:5433/teal_test
14
15# Redis Configuration (if needed)
16REDIS_URL=redis://garnet:6379
17
18# AT Protocol Configuration (placeholder for testing)
19AT_PROTOCOL_JWT_SECRET=test-jwt-secret-for-development-only
20
21# Client Configuration
22CLIENT_ADDRESS=localhost