-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
37 lines (28 loc) · 942 Bytes
/
.env.example
File metadata and controls
37 lines (28 loc) · 942 Bytes
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
# ─── GymBro Environment Variables ───────────────────────────────────────────
# App
APP_ENV=development
APP_SECRET_KEY=your_super_secret_key_change_in_production
# MongoDB
MONGO_URI=mongodb://localhost:27017
MONGO_DB=gymbro
# JWT
JWT_SECRET=your_jwt_secret_key_min_32_chars
JWT_ALGORITHM=HS256
ACCESS_TOKEN_EXPIRE_MINUTES=60
REFRESH_TOKEN_EXPIRE_DAYS=30
# Gmail OTP
GMAIL_USER=your_gmail@gmail.com
GMAIL_APP_PASSWORD=xxxx xxxx xxxx xxxx
# Google Gemini
GEMINI_API_KEY=your_gemini_api_key_here
# VisionAgents
VISIONAGENTS_API_KEY=your_visionagents_api_key_here
VISIONAGENTS_BASE_URL=https://api.visionagents.ai
# Deepgram TTS
DEEPGRAM_API_KEY=your_deepgram_api_key_here
# Stripe (placeholder — do not use yet)
STRIPE_SECRET_KEY=
STRIPE_PUBLISHABLE_KEY=
# Backend
BACKEND_PORT=8000
CORS_ORIGINS=http://localhost:19006,exp://localhost:19000