enflow-api / env.example
dhruv575
Setup and more markdown
ada5d3f
raw
history blame contribute delete
749 Bytes
# 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