mirror of
https://github.com/Manoj-HV30/clawrity.git
synced 2026-05-16 19:35:21 +00:00
31 lines
1.1 KiB
Bash
31 lines
1.1 KiB
Bash
# =============================================================================
|
|
# Clawrity — Environment Variables
|
|
# Copy this file to .env and fill in your values.
|
|
# NEVER commit .env to git.
|
|
# =============================================================================
|
|
|
|
# --- Groq API (free at https://console.groq.com) ---
|
|
GROQ_API_KEY=
|
|
|
|
# --- NVIDIA NIM API (alternative to Groq — set one or the other) ---
|
|
# NVIDIA_API_KEY=
|
|
|
|
# --- PostgreSQL + pgvector (docker-compose handles this if using defaults) ---
|
|
DATABASE_URL=postgresql://user:pass@localhost:5432/clawrity
|
|
|
|
# --- Slack Bot (Socket Mode) ---
|
|
# 1. Create app at https://api.slack.com/apps
|
|
# 2. Enable Socket Mode → generate App-Level Token (xapp-...)
|
|
# 3. OAuth & Permissions → install to workspace → copy Bot Token (xoxb-...)
|
|
# 4. Basic Information → Signing Secret
|
|
SLACK_BOT_TOKEN=
|
|
SLACK_APP_TOKEN=
|
|
SLACK_SIGNING_SECRET=
|
|
|
|
# --- Tavily Web Search (free at https://app.tavily.com) ---
|
|
TAVILY_API_KEY=
|
|
|
|
# --- Slack Webhook for digest delivery ---
|
|
# Create at: Slack App → Incoming Webhooks → Add New Webhook to Workspace
|
|
ACME_SLACK_WEBHOOK=
|