-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathenv.example.txt
More file actions
28 lines (21 loc) · 1.4 KB
/
Copy pathenv.example.txt
File metadata and controls
28 lines (21 loc) · 1.4 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
# ---------------------------------------------------------------------------
# Copy this file to `.env` and fill in real values. NEVER commit your real .env.
# ---------------------------------------------------------------------------
# Discord bot token (Developer Portal -> your app -> Bot -> Reset Token).
# Treat like a password. Server-side only.
DISCORD_TOKEN=your-discord-bot-token-here
# Discord application (client) ID. Developer Portal -> your app -> General Information.
# Required by deploy-commands.js to register the slash command.
DISCORD_CLIENT_ID=your-discord-application-id-here
# Your Joker Obfuscator API key. Create one at https://jokerobfuscator.com/account (API tab).
# Starts with "jkr_live_". Spends YOUR credits on every call — keep it secret, server-side only.
JOKER_API_KEY=jkr_live_replace_with_your_real_key
# Joker API base URL. Leave as the default unless you run a self-hosted / white-label instance.
JOKER_API_BASE=https://jokerobfuscator.com
# --- Optional ---------------------------------------------------------------
# Comma-separated Discord guild (server) IDs. If set, slash commands are registered
# ONLY to these guilds (instant, great for testing) and the bot ignores other guilds.
# Leave blank to register globally (can take up to ~1 hour to propagate).
ALLOWED_GUILDS=
# Per-user cooldown between /obfuscate calls, in seconds. Prevents spam / credit drain.
COOLDOWN_SECONDS=15