A simple bug tracker built for game developers.
We needed a bug tracker that didn't suck for game development. Most tools are built for web apps and don't handle the stuff we actually need - like sharing save files, crash logs, and screenshots.
Jira is overkill and expensive. GitHub Issues is too basic. Everything else either costs too much or doesn't understand game development workflows.
So we built our own. It's got the basics done right:
- Project organization (one tracker per game)
- File uploads for screenshots, logs, save files, whatever
- Comments and discussions on issues
- Voting so you know what actually matters
- Email notifications that don't spam you
- OAuth login (Google, Discord) or just email/password
Each bug report has a title, description, priority level, and status. People can comment with attachments, vote on what's important, and discuss solutions. Nothing fancy, just the stuff you actually need.
Easiest way is with Docker:
services:
tigerbug:
image: ghcr.io/twobitgames/tigerbug:latest
ports:
- "9840:9840"
volumes:
- ./data:/app/server/data
environment:
- JWT_SECRET=change-this-to-something-random
- JWT_EXPIRES_IN=7d
restart: unless-stoppedThen go to http://localhost:9840 and create your admin account.
We built this for our own use and open-sourced it in case it's useful to others. We don't have time to maintain it as a full project, so there's no Issues tab here.
If you find a critical bug, email us at contact@twobit-games.com. Otherwise, feel free to fork it and make it work for your needs.
MIT License - see LICENSE for details.
Built with ❤️ by TwoBit Games


