vote up 1 vote down star

There's a ton and and a half of questions and even more answers here concerning people looking for bug trackers. However all of them (that I found) seem to be about web based solutions. Since I'm working on a local project where I don't want to set up a web / DB server, and I don't want to use a hosted tracker either, I'm looking for something that runs locally.

  • very preferably open-source
  • pure Python or (at least) Windows executable
  • no need for a database server (sqlite is obviously fine)
  • Doesn't have to be fancy, just the basic bug / issue tracking functionality; just a little bit more than my current TODO text file or an Excel table.

Any suggestions?

flag

6 Answers

vote up 2 vote down check

Trac might be a bit too over engineered, but you could still run it locally via tracd on localhost.

It's:

  • opensource.
  • pure Python
  • uses sqlite

But as I said, might be too complex for your use case.

Link: http://trac.edgewall.org

link|flag
I have started to look into it a little bit. So far it seems I can just ignore those features that I don't need -- which is definitely not a standard property of bug trackers (bugzilla, anyone?) – balpha Aug 1 at 20:36
Works great so far. Thanks! – balpha Aug 3 at 9:54
vote up 0 vote down

Proprietary TestTrack (http://www.seapine.com/ttpro.html) has a client edition that will those things. We use it at work and I'm very happy using it.

Maybe you can check out this wikipedia article for hints http://en.wikipedia.org/wiki/Comparison_of_issue_tracking_systems

link|flag
vote up -1 vote down

Do yourself a favor. Get over this "must not be web based" obsession, Install a local WAMP stack on your PC or on a LAN server. Now, you can install your own wiki. And something like Trac. I'd like to find an implementation of google code's bugtracker and integrated wiki thats runnable locally - Trac seems to be the closest.

You have also installed a local SVN server? Even for personal projects the ability to track changes over time. revert etc. and integration with Trac are too good to pass up even for purely 1 man projects.

link|flag
First, where do you get the "obsession" from? And second, why would I build a WAMP stack and install wikimedia and setup an SVN server before installing trac (which comes with a builtin webserver, uses sqlite and has a builtin wiki) and using Subversion (which doesn't need a server)? And yes, I do use source control from the very first line of code. – balpha Aug 1 at 20:31
vote up 0 vote down

Artifacts might work for you - keeps data in the same version control as your source code, really simple (title + description + labels). It's not free though.

link|flag
vote up 0 vote down

Maybe Fossil is of any use to you?

It is actually a DVCS but it also integrates a bugtracker and wiki, very much like trac (although I like trac, don't get me wrong). And its webbased, on the other hand the installation is supossedly dead simple.

link|flag
vote up 0 vote down

I'm surprised nobody has mentioned Roundup.

It meets all your criteria, including not requiring a web-based interface (as per your specification, and unlike the accepted answer which suggested Trac).

Roundup is:

  • Open source
  • Pure Python
  • Supports SQLite
  • Not fancy, focuses on solid bug tracking

And as a significant point of differentiation, it has command-line and email interfaces in addition to a web interface.

It's very easy to get started - I suggest you take it for a spin.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.