- Add People API integration with contact management tools (create, list, get) - Fix OAuth flow: replace deprecated OOB with localhost callback - Fix Ctrl+C handling with proper signal handlers for graceful shutdown - Fix UTF-8 encoding in scheduled_tasks.py for Windows compatibility - Add users/ directory to gitignore to protect personal data Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
65 lines
833 B
Plaintext
65 lines
833 B
Plaintext
# Python
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
*.so
|
|
.Python
|
|
build/
|
|
develop-eggs/
|
|
dist/
|
|
downloads/
|
|
eggs/
|
|
.eggs/
|
|
lib/
|
|
lib64/
|
|
parts/
|
|
sdist/
|
|
var/
|
|
wheels/
|
|
*.egg-info/
|
|
.installed.cfg
|
|
*.egg
|
|
|
|
# Virtual environments
|
|
venv/
|
|
env/
|
|
ENV/
|
|
.venv
|
|
|
|
# IDE
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Secrets and local config
|
|
*.local.yaml
|
|
*.local.json
|
|
.env
|
|
.env.local
|
|
config/scheduled_tasks.yaml # Use scheduled_tasks.example.yaml instead
|
|
|
|
# Memory workspace (optional - remove if you want to version control)
|
|
memory_workspace/memory/*.md
|
|
memory_workspace/memory_index.db
|
|
memory_workspace/users/*.md # User profiles (jordan.md, etc.)
|
|
memory_workspace/vectors.usearch
|
|
|
|
# User profiles (personal info)
|
|
users/
|
|
|
|
# Usage tracking
|
|
usage_data.json
|
|
|
|
# Google OAuth tokens
|
|
config/google_credentials.yaml
|
|
config/google_oauth_token.json
|
|
|
|
# Logs
|
|
*.log
|