-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.dlplus.example
More file actions
83 lines (66 loc) · 1.95 KB
/
.env.dlplus.example
File metadata and controls
83 lines (66 loc) · 1.95 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
# DL+ System Configuration Example
# مثال على إعدادات نظام DL+
# نسخ هذا الملف إلى .env وتعديل القيم
# Copy this file to .env and modify the values
# ===== System Information =====
SYSTEM_NAME="DL+ Unified Arabic Intelligence System"
SYSTEM_NAME_ARABIC="نظام DL+ للذكاء الصناعي العربي الموحد"
SYSTEM_VERSION="1.0.0"
# ===== GitHub Configuration =====
GITHUB_ENABLED=true
GITHUB_TOKEN=your-github-token-here
GITHUB_REPO=wasalstor-web/AI-Agent-Platform
# ===== Hostinger Configuration =====
HOSTINGER_ENABLED=true
HOSTINGER_HOST=your-hostinger-host
HOSTINGER_PORT=8000
# ===== FastAPI Configuration =====
FASTAPI_HOST=0.0.0.0
FASTAPI_PORT=8000
# Generate with: openssl rand -hex 32
FASTAPI_SECRET_KEY=change-this-to-a-secure-random-key
# ===== OpenWebUI Configuration =====
OPENWEBUI_ENABLED=true
OPENWEBUI_PORT=3000
OPENWEBUI_HOST=0.0.0.0
OPENWEBUI_VERSION=latest
# Generate with: openssl rand -hex 32
WEBUI_SECRET_KEY=change-this-to-a-secure-random-key
# ===== Ollama Configuration =====
OLLAMA_API_BASE_URL=http://localhost:11434
# ===== AI Models Configuration =====
MODELS_ENABLED=true
DEFAULT_MODEL=llama3
MODELS_PATH=./models
# ===== Arabic Language Settings =====
LANGUAGE=ar
ARABIC_STYLE=formal
ENABLE_CLASSICAL_ARABIC=true
# ===== Agent Configuration =====
AGENTS_ENABLED=true
MAX_AGENTS=10
AGENT_TIMEOUT=300
# ===== Context Settings =====
MAX_CONTEXT_HISTORY=10
CONTEXT_WINDOW_SIZE=4096
# ===== Security Settings =====
ENABLE_AUTHENTICATION=true
ENABLE_ENCRYPTION=true
ALLOWED_ORIGINS=*
# ===== Logging Configuration =====
LOG_LEVEL=INFO
LOG_FILE=./logs/dlplus.log
ENABLE_FILE_LOGGING=true
# ===== Performance Settings =====
ASYNC_MODE=true
MAX_WORKERS=4
REQUEST_TIMEOUT=60
# ===== VPS Configuration (from existing .env.example) =====
VPS_HOST=your-vps-hostname.com
VPS_USER=root
VPS_PORT=22
# ===== Web Server Ports =====
HTTP_PORT=80
HTTPS_PORT=443
# ===== Connection Settings =====
TIMEOUT=5