-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
74 lines (55 loc) · 3.03 KB
/
Copy path.env.example
File metadata and controls
74 lines (55 loc) · 3.03 KB
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
##############################################################################
# Multimodal Agent – Environment Variables Template
# Copy this file and rename it to:
# · backend/.env (for backend service)
# · frontend/.env.local (for frontend service)
#
# Then fill in your real values.
# DO NOT commit files with real secrets to version control!
##############################################################################
# ─────────────────────────────────────────────────────────────────────────────
# BACKEND (backend/.env)
# ─────────────────────────────────────────────────────────────────────────────
# MongoDB connection string (MongoDB Atlas recommended)
MONGODB_URL=mongodb+srv://<user>:<password>@cluster0.xxxxx.mongodb.net/<dbname>
# JWT secret key – change to a long random string in production
SECRET_KEY=your-very-secret-key-change-this
# Google OAuth2
GOOGLE_CLIENT_ID=<your-google-client-id>.apps.googleusercontent.com
GOOGLE_CLIENT_SECRET=GOCSPX-<your-secret>
GOOGLE_REDIRECT_URI=http://localhost:3000/auth/callback
# Google / Gemini AI
GOOGLE_API_KEY=<your-google-ai-api-key>
GEMINI_API_KEY=<your-gemini-api-key>
# OpenAI
OPENAI_API_KEY=sk-proj-<your-openai-key>
# Groq
GROQ_API_KEY=gsk_<your-groq-key>
# Perplexity
PERPLEXITY_API_KEY=pplx-<your-perplexity-key>
# YouTube Data API v3
YOUTUBE_API_KEY=<your-youtube-api-key>
# Reddit API
REDDIT_CLIENT_ID=<your-reddit-client-id>
REDDIT_CLIENT_SECRET=<your-reddit-client-secret>
# Apify (Instagram scraping)
APIFY_API_TOKEN=apify_api_<your-token>
# Cloudinary
CLOUDINARY_CLOUD_NAME=<your-cloud-name>
CLOUDINARY_UPLOAD_PRESET=<your-upload-preset>
# Microsoft Azure Speech Services
AZURE_SPEECH_KEY=<your-azure-speech-key>
AZURE_SPEECH_REGION=<e.g. centralindia>
# MiniMax (optional)
MINIMAX_API_KEY=<your-minimax-key>
# KIE (optional)
KIE_API_KEY=<your-kie-key>
# ─────────────────────────────────────────────────────────────────────────────
# FRONTEND (frontend/.env.local)
# ─────────────────────────────────────────────────────────────────────────────
NEXT_PUBLIC_GOOGLE_CLIENT_ID=<your-google-client-id>.apps.googleusercontent.com
NEXT_PUBLIC_CLOUDINARY_CLOUD_NAME=<your-cloud-name>
NEXT_PUBLIC_CLOUDINARY_UPLOAD_PRESET=<your-upload-preset>
# Backend URL (used by compose; change for production deployment)
NEXT_PUBLIC_BACKEND_URL=http://localhost:8000
NEXT_PUBLIC_WS_URL=ws://localhost:8000