File size: 543 Bytes
fd50325 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 | # MongoDB Configuration
MONGO_URI=mongodb://localhost:27017/detectifai
# S3-compatible Storage (Backblaze B2)
MINIO_ENDPOINT=s3.eu-central-003.backblazeb2.com
MINIO_ACCESS_KEY=your-b2-key-id
MINIO_SECRET_KEY=your-b2-application-key
MINIO_VIDEO_BUCKET=detectifai-videos
MINIO_KEYFRAME_BUCKET=detectifai-keyframes
MINIO_REPORTS_BUCKET=detectifai-reports
MINIO_SECURE=true
MINIO_REGION=eu-central-003
# JWT Configuration
JWT_SECRET=your-super-secret-jwt-key-here
# Flask Configuration
FLASK_ENV=development
FLASK_DEBUG=True
|