-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
64 lines (54 loc) · 1.85 KB
/
.env.example
File metadata and controls
64 lines (54 loc) · 1.85 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
# Core app
NODE_ENV=local
PORT=3000
JWT_SECRET=replace-with-long-random-string
JWT_EXPIRES_IN=3600s
WHITELIST_ENVIRONMENTS=local,test
# Database
POSTGRES_USER=postgres
POSTGRES_PASSWORD=postgres
POSTGRES_DB=app
DATABASE_URL=postgres://postgres:postgres@postgres:5432/app
# Google OAuth2
GOOGLE_CLIENT_ID=123456789012-abcdefghijklmnopqrstuvwxyz123456.apps.googleusercontent.com
GOOGLE_CLIENT_SECRET=GOCSPX-your-google-client-secret
GOOGLE_CALLBACK_URL=http://localhost:3000/api/v1/auth/google/callback
# NATS
NATS_URL=nats://nats:4222
# MinIO
MINIO_ROOT_USER=minioadmin
MINIO_ROOT_PASSWORD=minioadmin
MINIO_ENDPOINT=minio
MINIO_PORT=9000
MINIO_ACCESS_KEY=minioadmin
MINIO_SECRET_KEY=minioadmin
MINIO_BUCKET=app
# Stripe
STRIPE_SECRET_KEY=sk_test_your_stripe_secret_key
# Optional in the current project flow unless you process Stripe events directly
STRIPE_WEBHOOK_SECRET=whsec_your_stripe_webhook_secret
STRIPE_PUBLISHABLE_KEY=pk_test_your_stripe_publishable_key
STRIPE_SUCCESS_URL=http://localhost:3000/payments/success
STRIPE_CANCEL_URL=http://localhost:3000/payments/cancel
# RevenueCat
REVENUECAT_API_KEY=rc_your_revenuecat_secret_api_key
REVENUECAT_WEBHOOK_SECRET=your-revenuecat-webhook-shared-secret
REVENUECAT_AVAILABLE_PRODUCTS=pro_monthly,pro_yearly
# AI service
AI_SERVICE_URL=http://ai:8000
AI_INTERNAL_API_KEY=internal-api-key
INTERNAL_API_KEY=internal-api-key
# LLM providers
GEMINI_API_KEY=AIzaSy-your-gemini-key
OPENAI_API_KEY=sk-proj-your-openai-key
OPENROUTER_API_KEY=sk-or-v1-your-openrouter-key
# Notifications
ONESIGNAL_APP_ID=11111111-2222-3333-4444-555555555555
ONESIGNAL_REST_API_KEY=your-onesignal-rest-api-key
MANDRILL_API_KEY=your-mandrill-api-key
MANDRILL_FROM_NAME=The Project
EMAIL_VERIFICATION_BASE_URL=http://localhost:3000/api/v1/auth/verify_email
# Grafana
GRAFANA_ADMIN_USER=admin
GRAFANA_ADMIN_PASSWORD=admin