-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.env.example
More file actions
69 lines (52 loc) · 1.61 KB
/
Copy path.env.example
File metadata and controls
69 lines (52 loc) · 1.61 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
# OpenAI API Keys
OPENAI_API_KEY=your_openai_api_key_here
MODEL_ID = "gpt-5-nano"
# OpenRouter API Key (for alternative models)
# OPENROUTER_API_KEY=your_openrouter_api_key_here
# MODEL_ID = "openai/gpt-5-nano"
# Google Gemini API Key (for image generation)
GOOGLE_API_KEY=AIzaSyDZ6etgh5UIak--_kCmB23Te7IZUTk40uc
# Custom Readers API Keys(optional)
JINA_API_KEY=your_jina_api_key_here
# Database
DATABASE_URL=sqlite:///./open_pulse.db
# AgentOS Configuration
AGENTOS_PORT=7777
AGENTOS_HOST=0.0.0.0
# Telemetry (optional)
AGNO_TELEMETRY=false
#for Gmail
GOOGLE_CLIENT_ID=your_client_id_here
GOOGLE_CLIENT_SECRET=your_client_secret_here
GOOGLE_PROJECT_ID=your_project_id_here
GOOGLE_REDIRECT_URI=http://localhost # Default value
# ================================
# Email Service Configuration
# ================================
# SMTP Server Settings
SMTP_HOST=smtp.gmail.com
SMTP_PORT=587
# Sender Email Credentials
# For Gmail: Use App Password (not your regular password)
# Generate at: https://myaccount.google.com/apppasswords
SENDER_EMAIL=your_email@gmail.com
SENDER_PASSWORD=your_app_password_here
# Sender Display Name
SENDER_NAME=Open Pulse Newsletter
# Note: Recipient email is specified by USER_ID in trigger_workflow.sh
# No need to configure DEFAULT_RECIPIENTS here
# ================================
# Other Email Providers Examples
# ================================
# Outlook/Hotmail
# SMTP_HOST=smtp-mail.outlook.com
# SMTP_PORT=587
# Yahoo Mail
# SMTP_HOST=smtp.mail.yahoo.com
# SMTP_PORT=587
# QQ Mail (China)
# SMTP_HOST=smtp.qq.com
# SMTP_PORT=587
# 163 Mail (China)
# SMTP_HOST=smtp.163.com
# SMTP_PORT=465