forked from bingb0t5/im-in
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
67 lines (59 loc) · 2.71 KB
/
Copy path.env.example
File metadata and controls
67 lines (59 loc) · 2.71 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
# Required for current app runtime (Supabase)
# Get these from Supabase Project Settings -> API
VITE_SUPABASE_URL=""
VITE_SUPABASE_ANON_KEY=""
# Optional override for auth redirects (useful in hosted/proxied environments)
# Example: VITE_APP_URL="https://im-in.pages.dev"
VITE_APP_URL=""
# Optional frontend feature flag for WhatsApp auth.
# Keep Lalo platform secrets in backend function secrets only.
VITE_LALO_VERIFY_WHATSAPP_AUTH_BETA="true"
# VITE_LALO_WHATSAPP_AUTH_BETA="true" # legacy fallback
# Optional: public VAPID key for browser push registration.
# Required to enable push notifications in profile settings.
VITE_WEB_PUSH_PUBLIC_KEY=""
# Optional: comma-separated allowlist for the hidden moderation admin page
# Example: VITE_MODERATION_ADMIN_EMAILS="you@example.com,another@example.com"
VITE_MODERATION_ADMIN_EMAILS=""
# Optional: comma-separated allowlist for hidden feedback/admin pages in the frontend
# Falls back to VITE_MODERATION_ADMIN_EMAILS if you prefer one shared admin allowlist
VITE_FEEDBACK_ADMIN_EMAILS=""
# Optional backend integrations (set in Supabase function secrets for production)
# TRELLO_API_KEY=""
# TRELLO_API_TOKEN=""
# TRELLO_INTAKE_LIST_ID=""
# TRELLO_PROMPT_TRIGGER_LIST_ID=""
# TRELLO_API_SECRET=""
# TRELLO_WEBHOOK_CALLBACK_URL="https://<your-project-ref>.functions.supabase.co/trello-prompt-sync"
# FEEDBACK_SCREENSHOT_BUCKET="feedback-screenshots"
# FEEDBACK_ADMIN_EMAILS="you@example.com"
# OPENAI_FEEDBACK_MODEL="gpt-5.4-nano"
# LALO_ENGINEERING_INTERNAL_API_KEY=""
# ENGINEERING_SERVICE_BASE_URL="https://your-lalo-platform-host"
# LALO_ENGINEERING_API_BASE_URL="https://your-lalo-host"
# LALO_ENGINEERING_APP="im_in"
# EVENT_GALLERY_BUCKET="event-gallery"
# GALLERY_MODERATION_MODEL="gpt-4.1-mini"
# LALO_VERIFY_BASE_URL="https://verify-staging.llalo.app" # preferred direct lalo-verify host
# LALO_VERIFY_API_KEY=""
# LALO_VERIFY_APP_ID="im_in"
# LALO_VERIFY_WHATSAPP_AUTH_BETA="true"
# LALO_VERIFY_MANIFEST_URL="" # optional override; otherwise derived from LALO_VERIFY_BASE_URL
# PLATFORM_PUBLIC_BASE_URL="" # legacy fallback
# LALO_BASE_URL="" # legacy fallback
# LALO_PLATFORM_API_KEY="" # legacy fallback
# LALO_APP_ID="im_in" # legacy fallback
# LALO_WHATSAPP_AUTH_BETA="true" # legacy fallback
# WORKER_SOCIAL_API_BASE_URL="http://localhost:3020"
# WORKER_SOCIAL_API_KEY=""
# WEB_PUSH_PUBLIC_KEY=""
# WEB_PUSH_PRIVATE_KEY=""
# WEB_PUSH_SUBJECT="mailto:support@example.com"
# PUSH_DISPATCH_SECRET=""
# Optional local/build-time AI for website changelog layman summaries.
# This is used only by scripts/generate-changelog-summary.mjs during prebuild/predev.
# No runtime/browser AI calls are made from the changelog page.
# OPENAI_API_KEY=""
# OPENAI_CHANGELOG_MODEL="gpt-4.1-mini"
# Legacy optional
APP_URL=""