-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstack.env.example
More file actions
58 lines (51 loc) · 1.99 KB
/
Copy pathstack.env.example
File metadata and controls
58 lines (51 loc) · 1.99 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
49
50
51
52
53
54
55
56
57
58
# Copy to stack.env. Never commit real secrets.
# Discord application.
DISCORD_TOKEN=
DISCORD_CLIENT_ID=
# Optional custom status. Empty = no status.
BOT_STATUS=
# Public bot shell.
# Private mode keeps the bot constrained to command-registration guilds.
# Public mode registers global slash commands by default and allows joins unless
# BOT_ALLOWED_GUILD_IDS or BOT_BLOCKED_GUILD_IDS say otherwise.
BOT_PUBLIC_MODE=false
BOT_ALLOWED_GUILD_IDS=
BOT_BLOCKED_GUILD_IDS=
BOT_LEAVE_UNAUTHORIZED_GUILDS=true
# Slash command registration.
# Use "guild" for fast dev/private updates and "global" for a public bot.
DISCORD_COMMAND_REGISTRATION=guild
DISCORD_COMMAND_GUILD_IDS=
# Fallbacks still supported by the runtime and managed modules.
DISCORD_GUILD_ID=
DISCORD_GUILD_IDS=
# Per-guild settings store (SQLite).
GATEWAY_SQLITE_PATH=/app/data/gateway.sqlite
# Module switches.
MODULE_PERSONAL_ROLES_ENABLED=false
# Personal roles module.
PERSONAL_ROLES_GUILD_IDS=
# The IDs below are per-guild DEFAULTS. Prefer configuring each guild in
# Discord via /roles-setup (ManageGuild-gated); the guild-settings store
# overrides these env values per guild. Empty env + no store entry = module
# reports "not configured" in that guild.
PERSONAL_ROLES_CONFIRMATION_CHANNEL_ID=
PERSONAL_ROLES_CREATE_BELOW_ROLE_ID=
PERSONAL_ROLES_DEFAULT_NAME=Custom Role
PERSONAL_ROLES_REQUIRED_EDIT_NAME_ROLE_IDS=
PERSONAL_ROLES_REQUIRED_EDIT_COLOR_ROLE_IDS=
PERSONAL_ROLES_REQUIRED_EDIT_ICON_ROLE_IDS=
PERSONAL_ROLES_REQUIRED_EDIT_HOIST_ROLE_IDS=
PERSONAL_ROLES_REQUIRED_EDIT_GRADIENT_ROLE_IDS=
PERSONAL_ROLES_POSTGRES_HOST=localhost
PERSONAL_ROLES_POSTGRES_PORT=5432
PERSONAL_ROLES_POSTGRES_DATABASE=personal_roles
PERSONAL_ROLES_POSTGRES_USERNAME=postgres
PERSONAL_ROLES_POSTGRES_PASSWORD=
PERSONAL_ROLES_TYPEORM_LOGGING=false
PERSONAL_ROLES_ROLE_CHECK_CRON=*/5 * * * *
# Consumed by the postgres container (compose env_file). Keep in sync with the
# PERSONAL_ROLES_POSTGRES_* values above.
POSTGRES_DB=personal_roles
POSTGRES_USER=postgres
POSTGRES_PASSWORD=