-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
36 lines (28 loc) · 1.26 KB
/
.env.example
File metadata and controls
36 lines (28 loc) · 1.26 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
# -----------------------------------------------
# 🛠️ CMS Installation & Database Configuration
# -----------------------------------------------
# Set to true once installation is complete
IS_INSTALLED=true
# -----------------------------------------------
# 📦 Database Connection Settings
# -----------------------------------------------
# Supported values: postgres | mysql | sqlite
DATABASE_TYPE="sqlite"
# Provide your database connection URL here.
# Examples:
# - PostgreSQL: "postgresql://user:password@localhost:5432/dbname"
# - MySQL: "mysql://user:password@localhost:3306/dbname"
# - SQLite: "file:./dev.db"
DATABASE_URL="file:./dev.db"
# -----------------------------------------------
# 🔑 Authentication Settings
# -----------------------------------------------
# The secret used for signing cookies and tokens.
# Ensure this is a long, random string for security.
# You can generate a secure random string using Node.js:
# node -e "console.log(require('crypto').randomBytes(32).toString('base64'))"
NEXTAUTH_SECRET="xJyrPG5/PblXsLLWYDZ6XpUsQHZRfXjXYj2Qre4gNKM="
# TinyMCE API Key
# If you are using TinyMCE, provide your API key here.
# You can get a free API key from https://www.tiny.cloud/
NEXT_PUBLIC_TINYMCE_KEY="your-tinymce-api-key"