-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.env.example
More file actions
65 lines (55 loc) · 3.25 KB
/
Copy path.env.example
File metadata and controls
65 lines (55 loc) · 3.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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
# =============================================================================
# MCP Learning Path Generator — Environment Configuration
# =============================================================================
# Copy this file to .env and fill in your values.
# Never commit .env to version control.
# -----------------------------------------------------------------------------
# AI Model API Keys
# -----------------------------------------------------------------------------
GOOGLE_API_KEY=your_google_api_key_here
HF_API_KEY=your_huggingface_api_key_here # Optional: only needed for HF models
# -----------------------------------------------------------------------------
# Composio (Required for MCP tool integration)
# Get your API key from: https://app.composio.dev/settings
# -----------------------------------------------------------------------------
COMPOSIO_API_KEY=your_composio_api_key_here
# Composio auth config IDs — create these in your Composio dashboard.
# Each auth config corresponds to one OAuth app (YouTube, Drive, Notion).
# Go to: https://app.composio.dev/integrations → New Integration
COMPOSIO_YOUTUBE_INTEGRATION_ID=your_youtube_integration_id
COMPOSIO_DRIVE_INTEGRATION_ID=your_drive_integration_id
COMPOSIO_NOTION_INTEGRATION_ID=your_notion_integration_id
# -----------------------------------------------------------------------------
# Application Auth
# -----------------------------------------------------------------------------
# DEV ONLY: set this to bypass the login screen and auto-login as this email.
# Remove or leave blank in production.
DEV_USER_EMAIL=
# Public URL for OAuth redirects and share links.
# Use your deployed URL in production, e.g. https://your-app.onrender.com
APP_URL=http://localhost:8501
# -----------------------------------------------------------------------------
# Database
# -----------------------------------------------------------------------------
# SQLite by default (relative path). Switch to postgresql://... for production.
DATABASE_URL=sqlite:///./app.db
# -----------------------------------------------------------------------------
# Generation settings
# -----------------------------------------------------------------------------
DESIRED_DAYS=10 # Default day count if not specified in goal
CONTINUATION_MAX_ITER=4 # Max iterative continuation attempts
# -----------------------------------------------------------------------------
# [DEV] Direct HTTP tool mode (legacy, used during local testing only)
# Set USE_DIRECT_TOOLS=false in production to use Composio MCP session.
# -----------------------------------------------------------------------------
USE_DIRECT_TOOLS=false
DEBUG_DIRECT_TOOLS=false
# -----------------------------------------------------------------------------
# [DEV] YouTube OAuth (local developer utilities only — not used in production)
# These are used by scripts/get_youtube_token.py and scripts/create_youtube_playlist.py
# Production playlist creation goes through the user's Composio connection.
# -----------------------------------------------------------------------------
# YOUTUBE_USE_OAUTH=true
# YOUTUBE_OAUTH_CLIENT_SECRETS_FILE=./youtube_client_secrets.json
# YOUTUBE_OAUTH_TOKEN_FILE=./tokens/youtube_token.json
# YOUTUBE_OAUTH_LOCAL_PORT=8765