Skip to content

TwoBitGames/TigerBug

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

TigerBug Logo TigerBug

A simple bug tracker built for game developers.

Contributors Forks Stargazers MIT License

Why we built this

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

Screenshot of detail view

How it works

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.

Screenshot of new issue

Screenshot of kanban view

Running it

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-stopped

Then go to http://localhost:9840 and create your admin account.

Issues and support

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.

License

MIT License - see LICENSE for details.


Built with ❤️ by TwoBit Games