-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy path.env.example
More file actions
44 lines (34 loc) · 1.21 KB
/
Copy path.env.example
File metadata and controls
44 lines (34 loc) · 1.21 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
# ============================================
# Environment Variables Template
# Copy this file to .env.local and fill in your values
# cp .env.example .env.local
# ============================================
# --- App ---
NEXT_PUBLIC_APP_NAME="Amir App"
NEXT_PUBLIC_APP_VERSION="0.1.0"
NEXT_PUBLIC_APP_URL="http://localhost:3000"
# --- API ---
NEXT_PUBLIC_API_BASE_URL="http://localhost:8080/api"
NEXT_PUBLIC_API_TIMEOUT=30000
# --- Debug ---
NEXT_PUBLIC_DEBUG=true
LOG_LEVEL="debug"
# --- Features Flags ---
NEXT_PUBLIC_ENABLE_PWA=false
# --- SEO ---
NEXT_PUBLIC_SITE_TITLE="Amir App"
NEXT_PUBLIC_SITE_DESCRIPTION="Amir App - Next.js Application"
# --- Locale ---
NEXT_PUBLIC_DEFAULT_LOCALE="id"
# --- Database (server-side only) ---
# DATABASE_URL="postgresql://user:password@localhost:5432/amir_app_dev"
# --- Auth / Secrets (server-side only, no NEXT_PUBLIC_ prefix) ---
# AUTH_SECRET="your-auth-secret"
# JWT_SECRET="your-jwt-secret"
# ENCRYPTION_KEY="your-32-character-secret-key-here"
# SQIDS_ALPHABET="abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789"
# --- Third-party API Keys (server-side only) ---
# GOOGLE_CLIENT_ID=""
# GOOGLE_CLIENT_SECRET=""
# --- Analytics ---
# NEXT_PUBLIC_ANALYTICS_ID=""