forked from sadfun/wirebot
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
42 lines (36 loc) · 1.8 KB
/
Copy path.env.example
File metadata and controls
42 lines (36 loc) · 1.8 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
# Telegram connector. Create the bot with @BotFather. Optional when the Slack or
# Discord connector below is configured; at least one connector must be set.
# TELEGRAM_BOT_TOKEN=123456:replace-me
# Comma-separated Telegram numeric user IDs. Messages from everyone else are
# ignored, including guest-mode mentions. Set together with the bot token.
# TELEGRAM_ALLOWED_USER_IDS=123456789
# Optional Slack connector (Socket Mode). Set all three together to enable it;
# see docs/slack.md for the full setup guide, including a pasteable app manifest.
# SLACK_BOT_TOKEN=xoxb-replace-me
# SLACK_APP_TOKEN=xapp-replace-me
# SLACK_ALLOWED_USER_IDS=U0123ABCDEF
# Optional: restrict instance-wide Slack commands to these members.
# SLACK_ADMIN_USER_IDS=U0123ABCDEF
# Optional text-only Discord connector. Set the bot token and comma-separated
# user snowflakes together; see docs/discord.md for setup and permissions.
# DISCORD_BOT_TOKEN=replace-me
# DISCORD_ALLOWED_USER_IDS=123456789012345678
# Optional: restrict instance-wide Discord commands to these users.
# DISCORD_ADMIN_USER_IDS=123456789012345678
# Public HTTPS origin serving the Mini App, normally through a reverse proxy.
# Leave it unset to expose the Mini App through a TryCloudflare quick tunnel
# instead: Wirebot installs a pinned, checksum-verified cloudflared into its
# toolchains directory (or uses one already on the PATH) and gets a fresh
# trycloudflare.com URL on every start. Set WIREBOT_TUNNEL=off to disable the
# fallback entirely.
#PUBLIC_URL=https://codex.example.com
WIREBOT_TUNNEL=auto
# Optional runtime paths and listener settings.
WIREBOT_DATA_DIR=.wirebot
CODEX_WORKSPACE=.wirebot/workspace
HOST=127.0.0.1
PORT=8787
LOG_LEVEL=info
# Wirebot pins its own Codex CLI version, so the pinned Codex should not
# self-check for updates.
CODEX_CHECK_UPDATES=false