-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy path.env.example
More file actions
28 lines (22 loc) · 909 Bytes
/
.env.example
File metadata and controls
28 lines (22 loc) · 909 Bytes
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
# Telegram Bot Configuration
TELEGRAM_BOT_TOKEN=your_telegram_bot_token_here
# These URLs should point to your BOT server ngrok tunnel (port 3000)
TELEGRAM_WEBHOOK_URL=https://your-bot-ngrok-url-here
# OpenAI Configuration
OPENAI_API_KEY=your_openai_api_key_here
# SearchAPI.io Configuration (Required for Amazon product search)
SEARCHAPI_KEY=your_searchapi_key_here
# Crossmint Configuration (Headless Checkout)
CROSSMINT_API_KEY=your_crossmint_server_api_key_here
CROSSMINT_CLIENT_API_KEY=your_crossmint_client_api_key_here
CROSSMINT_PROJECT_ID=your_crossmint_project_id_here
CROSSMINT_ENVIRONMENT=staging
# Web Application URL (For local development, this MUST be your public ngrok URL for port 3001)
WEB_APP_URL=https://your-web-interface-ngrok-url-here
# Application Configuration
NODE_ENV=development
PORT=3000
MAX_CONVERSATION_HISTORY=20
RATE_LIMIT_MESSAGES_PER_MINUTE=10
# Logging
LOG_LEVEL=info