forked from NiladriHazra/Open-Fiesta
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathenv.example
More file actions
61 lines (45 loc) · 1.77 KB
/
env.example
File metadata and controls
61 lines (45 loc) · 1.77 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
# Copy this file to `.env.local` and fill in values.
# Do NOT commit real secrets.
# --- App & Providers ---
# OpenRouter (optional, for OpenRouter models)
OPENROUTER_API_KEY=
# Google Gemini (optional, for Gemini models with images/web)
GEMINI_API_KEY=
# Ollama (optional, for local models)
# Example: http://localhost:11434 or http://host.docker.internal:11434
OLLAMA_URL=
# --- Supabase (required for auth + chat persistence) ---
NEXT_PUBLIC_SUPABASE_URL=
NEXT_PUBLIC_SUPABASE_ANON_KEY=
# --- Security ---
# A secret key for encrypting data in localStorage. Must be a 32-character string.
NEXT_PUBLIC_ENCRYPTION_KEY=
# --- Dev toggles ---
# Bypass auth in local development only. Must remain OFF in production.
# 0 = off (default), 1 = on
# The app enforces: only works when NODE_ENV !== 'production'.
NEXT_PUBLIC_BYPASS_AUTH=0
# A 32-character secret key for encrypting data in localStorage.
NEXT_PUBLIC_ENCRYPTION_KEY=e41689df9b228f1ee047e0ef2968a24a65139d7e3ea915fa7ff6994c87e6b395
NEXT_PUBLIC_GUEST_MODE=true
# --- PWA Configuration ---
# PWA app name and short name
NEXT_PUBLIC_PWA_NAME="Open Fiesta - AI Chat Platform"
NEXT_PUBLIC_PWA_SHORT_NAME="Open Fiesta"
# PWA theme colors
NEXT_PUBLIC_PWA_THEME_COLOR="#000000"
NEXT_PUBLIC_PWA_BACKGROUND_COLOR="#000000"
# PWA display mode (standalone, fullscreen, minimal-ui, browser)
NEXT_PUBLIC_PWA_DISPLAY="standalone"
# PWA start URL
NEXT_PUBLIC_PWA_START_URL="/"
# PWA scope
NEXT_PUBLIC_PWA_SCOPE="/"
# Enable/disable PWA features in development
NEXT_PUBLIC_PWA_DISABLE_DEV=true
# Push notification configuration (optional)
NEXT_PUBLIC_VAPID_PUBLIC_KEY=
VAPID_PRIVATE_KEY=
VAPID_SUBJECT=
# Service worker update check interval (in milliseconds)
NEXT_PUBLIC_SW_UPDATE_CHECK_INTERVAL=60000