Slashdot Mirror


Ask Slashdot: How Do You Track Bugs For Personal Software Projects?

An anonymous reader writes "One of my personal software projects grows bigger than I thought and the bugs becomes too many to just remember. I looked around for an open source bugs tracking system but found no ideal solutions. Ideally I wanted a simple system that does not need server setup and extra database setup, and can run under Mac OS X. Another option is a cloud service if it's affordable enough. Any suggestions from Slashdot?"

6 of 221 comments (clear)

  1. Mantis by Anonymous Coward · · Score: 5, Informative

    Been using Mantis for years, easy to install, easy to setup, easy to manage.

  2. Lighthouse by Literaphile · · Score: 4, Informative

    They have a free plan - http://lighthouseapp.com/

  3. Use unfuddle.com by Drake42 · · Score: 4, Informative

    I am not associated with them, nor employed by them. But I've used them for many projects now and been generally happy with the result.

  4. Redmine by Roadmaster · · Score: 4, Informative

    When I need to set up a self-hosted project and bug tracker, I normally use Redmine, which is very easy to use. It's written with Ruby on Rails, and so should be relatively easy to get a local SQLite-backed copy running on Mac OS using Rails' built-in mini web server.

    This post is overly complicated but some of its information may be useful:

    http://www.redmine.org/boards/2/topics/2768

  5. Fossil is the way to go. by Noryungi · · Score: 5, Informative

    Fossil (http://www.fossil-scm.org) is just great: it allows you to manage your code, documentation (wiki) and tickets (bugs).

    It's really small and lightweight, offers its own web interface and can be made to run on a central server with a CGI script. Oh, and it's free and open-source.

    It also scales very well: for instance the entire NetBSD code base has fossil repositories.

    I am currently re-starting some personal projects and I will be using fossil almost exclusively for these. It's simply fantastic.

    --
    The right to offend is far more important than the right not to be offended. (Rowan Atkinson)
  6. Turnkey Redmine by PatDev · · Score: 4, Informative

    http://www.turnkeylinux.org/redmine Seriously. I had an issue tracker running in 5 minutes. By 15 minutes I had the settings the way I wanted it. They ship you a virtual machine image. You load it into VirtualBox and click start. The VM loads to a little screen that tells you what IP address the redmine is running at. It also has git i installed, and it was super quick to migrate my git repo into it. Since I use redmine with git, it's really handy because they are already integrated - when I put "refs #32" in my git commit message, it appears on ticket #32.