-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy path.env.example
More file actions
39 lines (33 loc) · 1.11 KB
/
.env.example
File metadata and controls
39 lines (33 loc) · 1.11 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
# Database
DATABASE_URL="your-database-url"
DIRECT_URL="your-direct-url"
SUPABASE_URL="your-supabase-url"
SUPABASE_SERVICE_ROLE_KEY="your-supabase-service-role-key"
PHOTOROOM_API_KEY="your_photoroom_api_key"
# JWT Secrets
JWT_SECRET="your-jwt-secret-key-change-this-in-production"
REFRESH_SECRET="your-refresh-secret-key-change-this-in-production"
# Google OAuth 2.0 (for Android/iOS app)
GOOGLE_CLIENT_ID="your-google-oauth-client-id"
GOOGLE_CLIENT_SECRET="your-google-oauth-client-secret"
GOOGLE_REDIRECT_URI="https://wearly-backend-cvbo.onrender.com/api/auth/google/callback"
# Server
PORT=4000
# OpenAI API Key
OPENAI_API_KEY="your-openai-api-key-change-this-in-production"
# OpenWeatherMap API Key
OPENWEATHER_API_KEY="your-openweather-api-key-change-this-in-production"
# Firebase Admin SDK (FCM 푸시 알림용)
FIREBASE_SERVICE_ACCOUNT_KEY='{
"type":"service_account",
"project_id":"your-project",
"private_key_id":"...",
"private_key":"...",
"client_email":"...",
"client_id":"...",
"auth_uri":"...",
"token_uri":"...",
"auth_provider_x509_cert_url":"...",
"client_x509_cert_url":"...",
"universe_domain": "...",
}'