# Be-Vision API Environment Variables

# MongoDB Atlas
MONGODB_URI="mongodb+srv://username:password@cluster.mongodb.net/bevision?retryWrites=true&w=majority"

# Redis (for BullMQ)
REDIS_HOST="localhost"
REDIS_PORT=6379

# JWT
JWT_SECRET="your-jwt-secret-change-in-production"
JWT_EXPIRES_IN="15m"

# App
PORT=3000
CORS_ORIGIN="http://localhost:5173"
NODE_ENV="development"