-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy path.env.example
More file actions
32 lines (28 loc) · 1.01 KB
/
.env.example
File metadata and controls
32 lines (28 loc) · 1.01 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
# =============================
# 🚀 Server Configuration
# =============================
PORT=8000
NODE_ENV=development # 'production' or 'development'
# =============================
# 🔑 Twitter API Credentials (OAuth 2.0)
# Obtain these from Twitter Developer Portal
# =============================
TWITTER_CLIENT_ID=your_twitter_client_id
TWITTER_CLIENT_SECRET=your_twitter_client_secret
# =============================
# 🔐 Encryption Settings
# (Use secure, randomly-generated values)
# =============================
ENCRYPTION_KEY=your_32_characters_encryption_key
ENCRYPTION_SALT=your_hex_encoded_salt
ENCRYPTION_IV=your_hex_encoded_initialization_vector
# =============================
# 🤖 ChainGPT API Configuration
# Obtain your API key from: https://app.chaingpt.org/apidashboard
# =============================
CHAINGPT_API_KEY=your_chaingpt_api_key
# =============================
# 🔑 Token Set Password
# =============================
PASSWORD_AUTH=your_secure_password
# =============================