Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Looking for Free Agile Project Management Software [closed]

Tags:

c#

agile

I'm going to be starting a .com. I'm in the pre-stages right now of creating a business plan. Once I start to code I want a free Agile based Project software to track my code and bugs. I'm using MS Project for just the Work Breakdown Structure which is good enough for just a nice list but I want some good Agile software that won't cost me a thing.

Sure I want bug and task tracking but more importantly be able to see the "big picture" just like you can in MS project. I know MS project is not agile based but something like that where I can see an overview of resources, tasks list, etc. in a graph and list based way. Something like VersionOne but free.

This needs to be able to run in Windows.

like image 559
PositiveGuy Avatar asked Oct 12 '09 01:10

PositiveGuy


People also ask

Is agile project management free?

It offers a very comprehensive free edition that gives you access to a SaaS platform from which you can manage all kinds of agile projects. An advanced task management system with dependencies and reminders, interactive Kanban boards and Gantt charts are all provided at no cost for unlimited users and tasks.

Why did agile fail?

Agile transformation demands that the concerned teams focus on the customers and the deliverables. Instead, organizations sometimes focus too much on productivity and technology, which is why agile transformations fail. Since the focus is vague, products don't get adequately defined.


2 Answers

Rally fits the bill, is quite good, and the community edition (1 project for up to 10 users) is free.

like image 164
Jeff Sternal Avatar answered Sep 21 '22 13:09

Jeff Sternal


Pivotal Tracker is a pretty good free tool, but it tracks your project backlog in typical Agile terms (not code and bugs per se), and it runs online (as a hosted service, not as an installable product). For code and issues, and running on a specific server of yours rather than online, consider e.g. Mercurial, Trac, and TracMercurial (you could also use Trac directly with Subversion, but distributed systems such as Mercurial are the emerging thing -- check them out;-).

There are no doubt other combinations based on other distributed versioning systems such as git and Bazaar, but I'm less familiar with them.

BTW, if you do see the advantages of using "software as a service" rather than doing your own system administration, backups, &c, Bitbucket does free online Mercurial hosting with a homebrew issue tracker (and also integrates with Lighthouse, Twitter, FogBugz, Basecamp, CIA.vc, and other software yet), and similar arrangements exist for other version control systems.

Free hosting plans do of course have limits (e.g., Bitbucket's free plan is limited to 150MB), but upgrading to large teams, multiple repositories, large codebases, &c, is all pretty painless in terms of pricing plans -- if you consider the "costs of ownership" of running your own servers (especially in terms of system administrators), you can see why "software as a service" (aka software "in the cloud") is gradually taking over -- being able to start for free and only pay if and when you need to consume more hosting resources is attractive, and of course, since we're talking about open-source software, you can always decide to switch to "your own servers" approaches any time if there's a business case for it.

like image 31
Alex Martelli Avatar answered Sep 19 '22 13:09

Alex Martelli