-
Notifications
You must be signed in to change notification settings - Fork 75
Expand file tree
/
Copy path.env.example
More file actions
51 lines (45 loc) · 1.48 KB
/
.env.example
File metadata and controls
51 lines (45 loc) · 1.48 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
47
48
49
50
51
# HyperChat Environment Configuration
# Copy this file to .env and modify as needed
#
# Priority order (low to high):
# 1. Default values (lowest)
# 2. System environment variables
# 3. Global ~/.hyperchat/.env
# 4. Workspace ./.hyperchat/.env (highest)
# ================================
# Environment Settings
# ================================
NODE_ENV=development
HyperChat_MY_ENV=dev
# ================================
# Path Configuration
# ================================
# Custom global application data directory (optional)
# If not set, defaults to ~/Documents/HyperChat
# HyperChat_AppDataDir=/custom/path/to/hyperchat
# ================================
# Service Configuration
# ================================
HyperChat_HTTP_PORT=16100
HyperChat_Web_Password=123456
# ================================
# Interface Configuration
# ================================
# HyperChat_Language=zh
# ================================
# AI API Configuration (Optional)
# ================================
# These can be managed via workspace configuration or app settings
# Environment variables have highest priority and will override app settings
#
# Required for direct AI usage without app configuration:
# HyperChat_API_KEY=your_api_key_here
# HyperChat_API_URL=https://api.openai.com/v1
#
# Optional (will use defaults if not specified):
# HyperChat_AI_Provider=openai
# HyperChat_AI_Model=gpt-4
# ================================
# Development Settings
# ================================
LOG_LEVEL=info