23 lines
509 B
Plaintext
23 lines
509 B
Plaintext
# Application
|
|
APP_PORT=3020
|
|
NODE_ENV=development
|
|
|
|
# Database
|
|
DATABASE_URL="postgresql://postgres:postgres@localhost:5432/rwa_contribution?schema=public"
|
|
|
|
# Redis
|
|
REDIS_HOST=localhost
|
|
REDIS_PORT=6379
|
|
|
|
# Kafka
|
|
KAFKA_BROKERS=localhost:9092
|
|
KAFKA_GROUP_ID=contribution-service-group
|
|
|
|
# JWT (for auth validation)
|
|
JWT_SECRET=your-jwt-secret
|
|
|
|
# CDC Topics
|
|
CDC_TOPIC_USERS=dbserver1.rwa_identity.users
|
|
CDC_TOPIC_ADOPTIONS=dbserver1.rwa_planting.adoptions
|
|
CDC_TOPIC_REFERRALS=dbserver1.rwa_referral.referral_relations
|