# Backend Environment Configuration
NODE_ENV=development
PORT=5000

# Database
DB_HOST=localhost
DB_PORT=5432
DB_USER=postgres
DB_PASSWORD=123
DB_NAME=hindu_calendar

# JWT
JWT_SECRET=your_jwt_secret_key_change_this_in_production

# Frontend
FRONTEND_URL=*

# Logging
LOG_LEVEL=info

# Panchang API (Optional - if using external service)
PANCHANG_API_KEY=your_api_key
PANCHANG_API_URL=https://api.panchang.com
