Spaces:
Sleeping
Sleeping
File size: 749 Bytes
18c9405 ada5d3f 18c9405 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 | # MongoDB connection string
MONGO_URI=mongodb+srv://username:password@cluster.mongodb.net/enflow
# JWT secret for authentication
JWT_SECRET=your_jwt_secret_here
# Cloudinary configuration
CLOUDINARY_CLOUD_NAME=your_cloud_name
CLOUDINARY_API_KEY=your_api_key
CLOUDINARY_API_SECRET=your_api_secret
# Redis configuration
# Option 1: Individual components (preferred for better flexibility)
REDIS_HOST=your_redis_host
REDIS_PORT=6379
REDIS_PASSWORD=your_redis_password
# Option 2: Full Redis URL (alternative)
# If using this, you can comment out the individual components above
REDIS_URL=redis://:{password}@{host}:{port}/0
# OpenAI API key
OPENAI_API_KEY=your_openai_api_key
# Flask environment (development or production)
FLASK_ENV=development |