insightfy-bloom-ms-ans / .env.example
MukeshKapoor25's picture
refactor(ans): Restructure ANS microservice architecture and configuration
1cb2a65
raw
history blame contribute delete
567 Bytes
# ANS Environment Variables
# Database Configuration
DATABASE_URL=postgresql+asyncpg://user:password@localhost:5432/ans_db
REDIS_URL=redis://localhost:6379/0
MONGODB_URL=mongodb://localhost:27017/ans_db
# Service URLs for Inter-Service Communication
MPMS_BASE_URL=http://localhost:8001
RMS_BASE_URL=http://localhost:8002
TMS_BASE_URL=http://localhost:8003
CRM_BASE_URL=http://localhost:8004
# Service Configuration
SERVICE_NAME=ans
SERVICE_PORT=8005
LOG_LEVEL=INFO
# JWT Configuration
JWT_SECRET_KEY=your-secret-key
JWT_ALGORITHM=HS256
JWT_EXPIRATION_MINUTES=1440