-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
46 lines (40 loc) · 1.9 KB
/
.env.example
File metadata and controls
46 lines (40 loc) · 1.9 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
# ===================================================================
# Better Auth Configuration
# ===================================================================
BETTER_AUTH_URL=https://js.gs/api
BETTER_AUTH_SECRET=your-secret-key-here
# ===================================================================
# Database Configuration
# ===================================================================
DATABASE_URL=postgresql://user:password@localhost:5432/jsgs
# ===================================================================
# ClickHouse Configuration (Analytics)
# ===================================================================
CLICKHOUSE_URL=http://localhost:8123
CLICKHOUSE_USERNAME=default
CLICKHOUSE_PASSWORD=
CLICKHOUSE_DATABASE=jsgs
# ===================================================================
# Redis Configuration (Caching)
# ===================================================================
# Leave empty to use filesystem cache (development) or memory cache
REDIS_URL=redis://:password@localhost:6379
# ===================================================================
# Default Admin User Configuration
# ===================================================================
ADMIN_EMAIL=admin@js.gs
ADMIN_NAME=Admin
ADMIN_USERNAME=admin
ADMIN_PASSWORD=change-me-in-production
# ===================================================================
# Resend Email Service Configuration
# ===================================================================
# Get your API key from https://resend.com/api-keys
RESEND_API_KEY=re_xxxxxxxxxxxxx
# Sender email with display name format: "Name <email@domain.com>"
RESEND_FROM_EMAIL=JS.GS <noreply@js.gs>
# ===================================================================
# Build Configuration
# ===================================================================
# Skip database migration during Docker build (set to "true" in Dockerfile)
SKIP_MIGRATE=false