Software development methodology to run less than 3 friends

I am starting a project with 2 friends, we are all software developers and we want to do something in a safe and correct way. This is why we decided to use some software development methodology that suits our needs. I would like to know what might be a good starting point for us and these are variables:

  • We are a team of 3 people.
  • We are friends.
  • This is a new company.
  • We want to do something in the style on the right .
  • We want to create clean code.

I would also like to know about software that could help these methods.

+3


source to share


1 answer


The couple should start right:



  • Continuous Integration - Use a continuous integration server to generate code and run automated tests. Jenkins is a great open source example.
  • Version Control - Git is a trendy new (and better) choice, but SVN works too. FWIW, the organization I work for is moving from SVN to Git
  • Write lots of tests - it will save you time and headaches in the long run.
  • Work on what interests you.
+5


source







All Articles