-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathenv.example
More file actions
executable file
·54 lines (45 loc) · 1.25 KB
/
env.example
File metadata and controls
executable file
·54 lines (45 loc) · 1.25 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
# Stimma Environment Configuration
# Database Configuration
DB_CONNECTION=mysql
DB_HOST=localhost
DB_PORT=3306
DB_DATABASE=stimma
DB_USERNAME=your_database_username
DB_PASSWORD=your_secure_password
# Mail Configuration
MAIL_HOST=your_mail_server
MAIL_PORT=465
MAIL_USERNAME=your_mail_username
MAIL_PASSWORD=your_mail_password
MAIL_ENCRYPTION=ssl
MAIL_FROM_ADDRESS=noreply@yourdomain.com
MAIL_FROM_NAME="Stimma"
MAIL_SMTP_AUTH=true
MAIL_SMTP_DEBUG=0
# Add domain to allowed recipients with comma between domains. Example: MAIL_ALLOWED_RECIPIENTS=domain1.com,domain2.com
MAIL_ALLOWED_RECIPIENTS=domain1.com,domain2.com
# AI configuration
AI_SERVER=https://api.example.com/v1/chat/completions
AI_API_KEY=your_ai_api_key
AI_MODEL=your_preferred_model
AI_MAX_COMPLETION_TOKENS=4096
AI_TEMPERATURE=0.7
AI_TOP_P=0.9
AI_STREAM=false
AI_MAX_MESSAGE_LENGTH=1000
AI_RATE_LIMIT_REQUESTS=50
AI_RATE_LIMIT_MINUTES=5
# System parameters
SYSTEM_NAME="Stimma"
SYSTEM_DESCRIPTION="Your system description"
SYSTEM_LOGO="/images/logo.png"
SYSTEM_COLOR="#007bff"
SYSTEM_FONT="Arial, sans-serif"
SYSTEM_FONT_SIZE=16
SYSTEM_URL=https://yourdomain.com
SYSTEM_VERSION=0.1
# Auth parameters
AUTH_TOKEN_EXPIRY_MINUTES=15
SESSION_REGENERATE_MINUTES=30
SESSION_LIFETIME=30
SESSION_LIFETIME_HOURS=24