-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathenv.example
More file actions
49 lines (41 loc) · 1.39 KB
/
env.example
File metadata and controls
49 lines (41 loc) · 1.39 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
# ================================
# Telegram Bot Configuration
# ================================
TELEGRAM_BOT_TOKEN=your_telegram_bot_token_here
# ================================
# Twitter/X Bot Configuration
# ================================
TWITTER_API_KEY=your_twitter_api_key_here
TWITTER_API_SECRET=your_twitter_api_secret_here
TWITTER_ACCESS_TOKEN=your_twitter_access_token_here
TWITTER_ACCESS_SECRET=your_twitter_access_secret_here
TWITTER_BOT_USERNAME=ask_starknet
TWITTER_POLL_INTERVAL=60000
# ================================
# Discord Bot Configuration
# ================================
DISCORD_TOKEN=your_discord_bot_token_here
DISCORD_CLIENT_ID=your_discord_client_id_here
# ================================
# Redis Configuration
# ================================
REDIS_HOST=localhost
REDIS_PORT=6379
REDIS_PASSWORD=
# ================================
# MCP Server Configuration
# ================================
# Command to run your MCP server
MCP_COMMAND=npx
# Arguments for the MCP server (comma-separated)
# Example: -y,@modelcontextprotocol/server-everything
# Example: -y,@your/custom-mcp-server
MCP_ARGS=-y,@modelcontextprotocol/server-everything
# Environment variables for MCP server (JSON format)
# Example: {"API_KEY":"your_key","ENV":"production"}
MCP_ENV=
# ================================
# General Configuration
# ================================
LOG_LEVEL=info
NODE_ENV=production