-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
29 lines (25 loc) · 1.11 KB
/
.env.example
File metadata and controls
29 lines (25 loc) · 1.11 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
# LinkedIn OAuth Credentials - POSTING APP
# Get these from: https://www.linkedin.com/developers/apps
# This app has w_member_social permission for posting
LINKEDIN_CLIENT_ID=your_client_id_here
LINKEDIN_CLIENT_SECRET=your_client_secret_here
LINKEDIN_ACCESS_TOKEN=your_access_token_here
LINKEDIN_USER_SUB=your_user_sub_here
# LinkedIn Analytics Credentials - SEPARATE APP
# Analytics requires a different app with r_organization_social permission
# See LINKEDIN_ANALYTICS_SETUP.md for setup instructions
LINKEDIN_ANALYTICS_CLIENT_ID=your_analytics_client_id_here
LINKEDIN_ANALYTICS_CLIENT_SECRET=your_analytics_client_secret_here
LINKEDIN_ANALYTICS_ACCESS_TOKEN=your_analytics_access_token_here
LINKEDIN_ANALYTICS_REFRESH_TOKEN=your_analytics_refresh_token_here
# Server Configuration
HOST=0.0.0.0
PORT=5000
REDIRECT_URI=http://localhost:5000/auth/callback
# Ollama Configuration (for context capture)
# Local: http://localhost:11434
# Remote server: http://192.168.0.5:11434
OLLAMA_HOST=http://localhost:11434
# Optional: AI Configuration (future use)
# ANTHROPIC_API_KEY=your_anthropic_key_here
# OPENAI_API_KEY=your_openai_key_here