-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.env.example
19 lines (16 loc) · 1.05 KB
/
.env.example
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# Database
DB_HOST=postgres # Hostname or IP address of the database server
DB_NAME=email_db # Name of the database to connect to
DB_USER=user # Database username
DB_PASSWORD=password # Database password
# LLM
OLLAMA_HOST=http://ollama:11434 # Container's hostname or external service URL
# Email monitoring
IMAP_SERVER=imap.server.com # IMAP server for checking incoming emails, e.g., imap.gmail.com
[email protected] # Email address to monitor
PASSWORD=password # Password for the monitored email account (use app-specific password if required)
[email protected],[email protected] # Comma-separated list of recipient email addresses for notifications
# Notes:
# 1. For email services with 2FA (e.g., Gmail), generate and use an app-specific password instead of the account password.
# 2. Adjust IMAP_SERVER based on your email provider's settings.
# 3. OLLAMA_HOST should be reachable by your application. Update the port or hostname if running on a different server or port.