-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
39 lines (33 loc) · 1.05 KB
/
Copy path.env.example
File metadata and controls
39 lines (33 loc) · 1.05 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
# Database (Prisma resolves relative SQLite paths from prisma/schema.prisma)
DATABASE_URL="file:../data/openwebsite.db"
# Site and runtime
SITE_URL="http://localhost:3000"
NEXT_PUBLIC_SITE_URL="http://localhost:3000"
HOST_PORT=3000
PORT=3000
NODE_ENV=production
# Auth and administrator
AUTH_SECRET="replace-with-a-long-random-secret"
AI_OPS_TOKEN="replace-with-a-long-random-token"
AUTH_COOKIE_SECURE=false
ADMIN_EMAIL="admin@example.com"
ADMIN_PASSWORD="ChangeMe123!"
# Internationalization
DEFAULT_LOCALE=zh
SUPPORTED_LOCALES=zh,en
# Site defaults for SEO
SITE_NAME="OpenWebsite"
SITE_DESCRIPTION="An SEO-first open-source company website system for multilingual content, metadata, sitemap, and AI operations."
SITE_KEYWORDS="company website, SEO, Next.js, OpenWebsite"
# Optional AI provider for SEO auto-fix (OpenAI-compatible chat completions)
AI_PROVIDER_NAME="OpenAI Compatible"
AI_BASE_URL="https://api.openai.com/v1"
AI_MODEL="gpt-4o-mini"
AI_API_KEY=
AI_TEMPERATURE=0.2
# Optional email notification
SMTP_HOST=
SMTP_PORT=
SMTP_USER=
SMTP_PASS=
SMTP_FROM=