Skip to main content
This section is for people who purchased the source code for one of these bots, rather than using a hosted instance. If you’re running a bot someone else hosts for you, you don’t need anything here — use that bot’s own Guides tab instead.
The exact terms of your purchase — what you’re licensed to do with the code, what support is included, and how updates work — are covered in License & support. Read that before you deploy anything commercially.

What’s the same across every bot

Every bot in this hub follows the same general shape, whichever one you bought:

A Discord application

You’ll create your own bot application in the Discord Developer Portal and use your own token — the source doesn’t come with one.

Environment-based config

Settings live in a .env file (token, database connection, feature flags) — nothing is hardcoded, so you configure without touching source.

A database

Either SQLite (a single file, zero setup) or PostgreSQL (needs its own server), depending on which bot you bought — see Database.

Your own hosting

A VPS, a home server, or a container platform — the source doesn’t include hosting. See Hosting for what’s involved.

What’s different bot to bot

The two things that actually differ across the catalog: Check the specific bot’s own repo README for which database it uses — the setup steps in this section flag where that matters.

Start here

See what you need installed before you start.