https://github.com/thomasbnt/Discord-Entitlement-Dashboard
Web dashboard to manage Entitlements for a Discord App. List, filter, delete and create test entitlements.
https://github.com/thomasbnt/Discord-Entitlement-Dashboard
api discord docker docker-compose entitlements premium sku vue
Last synced: 17 days ago
JSON representation
Web dashboard to manage Entitlements for a Discord App. List, filter, delete and create test entitlements.
- Host: GitHub
- URL: https://github.com/thomasbnt/Discord-Entitlement-Dashboard
- Owner: thomasbnt
- License: mit
- Created: 2026-06-01T14:18:17.000Z (about 2 months ago)
- Default Branch: main
- Last Pushed: 2026-06-13T10:11:08.000Z (about 2 months ago)
- Last Synced: 2026-06-28T13:32:09.074Z (about 1 month ago)
- Topics: api, discord, docker, docker-compose, entitlements, premium, sku, vue
- Language: Vue
- Homepage:
- Size: 472 KB
- Stars: 1
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- Funding: .github/funding.yml
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
- Security: SECURITY.md
- Agents: AGENTS.md
Awesome Lists containing this project
README
# Discord Entitlement Dashboard
[](https://nuxt.com)
[](https://discord.com/developers/docs)
[](https://docs.discord.com/developers/platform/app-monetization)
[](https://docker.com)
[](https://typescriptlang.org)
[](https://opensource.org/licenses/MIT)
Web dashboard to manage [Entitlements](https://docs.discord.com/developers/resources/entitlement) for a Discord App. List, filter, delete and create test entitlements without slash commands.

## What are Premium Apps & Activities?
**Premium Apps & Activities** is Discord's monetization system for developers. It lets you charge users or servers for premium features inside your Discord app:
- **App Subscriptions** — recurring billing, per user or per server (guild)
- **One-time purchases** — single payment for a permanent item or feature unlock
When a user or guild pays, Discord creates an **Entitlement** — the record that grants access. This dashboard manages those entitlements directly via the Discord API.

## Features
- Multi-app support: save and switch between multiple Discord apps from the header; credentials validated against Discord before saving; app name fetched automatically
- List all entitlements with filters (guild, user, SKU, expired, deleted)
- Export filtered entitlements to CSV (id, type, SKU name, user, guild, dates)
- Delete test entitlements (type `TEST_MODE_PURCHASE` or API-created)
- Create test entitlements with SKU selector
- Guild name resolution (bot member + widget fallback)
- Stats overview: total / active / test / expired
- Copy IDs to clipboard
- Persistent filter preferences (localStorage)
- Sorting on key columns
## Stack
- [Nuxt 3](https://nuxt.com) (v4 compat mode) + TypeScript
- [Nuxt UI v3](https://ui.nuxt.com)
- [Pinia](https://pinia.vuejs.org)
- [Docker](https://docker.com)
## Requirements
- Node.js 20+
- A Discord Bot Token and its Application ID
> **Discord monetization prerequisites:** your app must be [verified](https://support-dev.discord.com/hc/en-us/articles/23926564536471), owned by a [developer team](https://discord.com/developers/teams), and have [monetization enabled](https://docs.discord.com/developers/monetization/enabling-monetization) before entitlements can exist. See the [eligibility checklist](https://docs.discord.com/developers/monetization/enabling-monetization#step-2-complete-the-eligibility-checklist) for full requirements.
## Development
```bash
npm install
npm run dev
```
→
## Docker
```bash
cp .env.example .env
docker compose up --build
```
→
## Environment variables
| Variable | Default | Description |
|----------|---------|--------------------|
| `PORT` | `4545` | Docker host port |
## Security
The bot token only transits between the browser and the local Nuxt server. It is never sent to third-party servers. Use HTTPS in production.
## Contributing
See [CONTRIBUTING.md](CONTRIBUTING.md). Commits must follow [Conventional Commits](https://www.conventionalcommits.org/en/v1.0.0/):
```text
feat: add guild filter
fix: token not cleared on logout
docs: update env variables table
ci: add docker build workflow
chore: bump nuxt to 3.16
```
## License
MIT