forked from iflabx/agentifui
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
45 lines (32 loc) · 1.38 KB
/
.env.example
File metadata and controls
45 lines (32 loc) · 1.38 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
# ===========================================
# Supabase Configuration
# ===========================================
NEXT_PUBLIC_SUPABASE_URL=https://your-project-ref.supabase.co
# For local Supabase via CLI (Docker-based), use:
# NEXT_PUBLIC_SUPABASE_URL=http://localhost:54321
NEXT_PUBLIC_SUPABASE_ANON_KEY=your-anon-key
SUPABASE_SERVICE_ROLE_KEY=your-service-role-key
# Required only for self-hosted Supabase installations
# SUPABASE_JWT_SECRET=your-jwt-secret
# ===========================================
# API Encryption Key
# ===========================================
API_ENCRYPTION_KEY=your-32-byte-hex-string
# To generate: openssl rand -hex 32
# ===========================================
# Application Settings
# ===========================================
NEXT_PUBLIC_APP_URL=https://your-domain.com
# ===========================================
# Authentication & SSO
# ===========================================
NEXT_PUBLIC_SSO_ONLY_MODE=false
# Default email domain for SSO users when not configured per provider
# DEFAULT_SSO_EMAIL_DOMAIN=sso.local
# ===========================================
# CORS Settings
# ===========================================
CORS_ALLOWED_ORIGINS=https://yourdomain.com,https://app.yourdomain.com
# Optional for development only.
# If not set, only NEXT_PUBLIC_APP_URL will be allowed.
# DEV_ALLOWED_ORIGINS=http://localhost:3000,http://127.0.0.1:3000