26 lines
562 B
Plaintext
26 lines
562 B
Plaintext
# Application
|
|
APP_PORT=3002
|
|
APP_ENV=development
|
|
|
|
# Database
|
|
DATABASE_URL=postgresql://postgres:password@localhost:5432/authorization_db?schema=public
|
|
|
|
# Redis
|
|
REDIS_HOST=localhost
|
|
REDIS_PORT=6379
|
|
REDIS_PASSWORD=
|
|
|
|
# Kafka
|
|
KAFKA_BROKERS=localhost:9092
|
|
KAFKA_CLIENT_ID=authorization-service
|
|
KAFKA_CONSUMER_GROUP=authorization-consumer-group
|
|
|
|
# JWT
|
|
JWT_SECRET=your-jwt-secret-key
|
|
JWT_EXPIRES_IN=7d
|
|
|
|
# Service URLs
|
|
IDENTITY_SERVICE_URL=http://localhost:3000
|
|
REFERRAL_SERVICE_URL=http://localhost:3001
|
|
REWARD_SERVICE_URL=http://localhost:3005
|