forked from Shamlan321/OdooSense
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
40 lines (35 loc) · 1.26 KB
/
.env.example
File metadata and controls
40 lines (35 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
37
38
39
40
# Odoo Connection Settings
# Your Odoo server URL (default is localhost)
ODOO_URL=http://localhost:8069
# Your Odoo database name
ODOO_DB=odoo_db
# Your Odoo username (default is admin for local installations)
ODOO_USERNAME=admin
# Your Odoo user password (change this!)
ODOO_PASSWORD=your_secure_password
# AI API Settings
# Get your API key from Google Cloud Console: https://console.cloud.google.com/
GEMINI_API_KEY=your_gemini_api_key
# Logging and Debug Settings
# Available levels: DEBUG, INFO, WARNING, ERROR, CRITICAL
LOG_LEVEL=INFO
# Enable debug mode for additional logging (true/false)
DEBUG_MODE=false
# Number of conversation messages to keep in context
CONVERSATION_HISTORY_SIZE=5
# Default language for responses
DEFAULT_LANGUAGE=en_US
# Security Settings
# Enable SSL verification (recommended for production)
SSL_VERIFY=true
# Path to custom SSL certificate (if needed)
SSL_CERT_PATH=
# Connection timeout in seconds
CONNECTION_TIMEOUT=300
# Development Settings
# Enable development mode for additional features
DEV_MODE=false
# Show full error traces in responses (not recommended for production)
SHOW_FULL_ERROR_TRACE=false
# Note: This is a template file. Copy this to .env and fill in your actual values.
# Never commit your actual .env file to version control!