-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
18 lines (14 loc) · 825 Bytes
/
.env.example
File metadata and controls
18 lines (14 loc) · 825 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# Personal Assistant Plugin - Environment Variables
# Copy this file to your shell profile (~/.zshrc, ~/.bashrc, etc.)
# Google OAuth Client ID
# Get this from Google Cloud Console -> APIs & Services -> Credentials
export GOOGLE_CLIENT_ID="your-client-id.apps.googleusercontent.com"
# Google OAuth Client Secret
# Get this from Google Cloud Console -> APIs & Services -> Credentials
export GOOGLE_CLIENT_SECRET="your-client-secret"
# Token Encryption Key for Gmail MCP
# Generate with: python3 -c "from cryptography.fernet import Fernet; print(Fernet.generate_key().decode())"
export TOKEN_ENCRYPTION_KEY="your-generated-encryption-key"
# Path to Google OAuth Credentials JSON file
# Download from Google Cloud Console -> APIs & Services -> Credentials
export GOOGLE_OAUTH_CREDENTIALS="/path/to/your/gcp-oauth.keys.json"