How to split up backend development?


0

My design & front end development is finished, and it is time to do things like add shopping cart, registration, and connect to database. I have read that it is safest to give the programmer only access to SOME of the files during development, to both protect your idea, and ensure that if the relationship doesn't work out, you can quickly hire someone else. My main question is how do I figure out which pages I send to the programmer, to work on specific features. For example, let's say it's time to create the user registration process. I send specs for what I want done, along with the html/css/js/etc files that are completed, and he works his magic. But how do I know that I've sent all the files that are needed for that particular process. I hope this question makes sense. Please don't just say "You'll have to talk to your developer." I understand that I will, but I want to get some basic knowledge about this first so I can do this the smartest way possible. Thank you very much.

Web Dev

asked Oct 8 '11 at 09:59
Blank
Jdh
182 points
  • where did you get that advice/idea? It sounds like really bad advice to me. – Tim J 12 years ago
  • Well I thought I'd read it on this forum, but perhaps I misunderstood :/ Nonetheless, thank you for your clarification! – Jdh 12 years ago

3 Answers


1

I think you have 2 options:

  1. Develop the front end against a specification so that you can then get the developer to work straight from the specification (they won't need the front end if the specification is accurate). Effectively they don't care about the front end, and the front end doesn't care about the back end, they both just need to have the interaction specified (methods, parameters, etc.).
  2. Get a developer that you trust and give them the whole lot to work with. If you need to, get them to sign some non disclosure/compete contracts.

I would go with #2, the extra work with #1 would be a large overhead, and if you get a developer with references then you should have enough confidence in them.

Number 1 would also likely require someone to tidy the integration when the backend is done (probably a developer type), as things will not all be right.

answered Oct 8 '11 at 13:10
Blank
Joel Friedlaender
5,007 points
  • Haha let's be honest here, specifications are almost _never_ accurate! If you're doing it right, it's almost impossible for them to be, as they should be a 'living' document. I agree with your answer, but I'd just like to throw some more emphasis behind the added overhead by stressing that it could be significant, because integration _will_ be needed at some point. Without opening up the entire project to your developers, it's kind of like asking them to program partially blind. – Alex 12 years ago
  • I agree Alex, maybe I should have emphasised that #2 was a clear winner for me, but it is still a valid option if they wish to "keep the developer in the dark" – Joel Friedlaender 12 years ago

1

I've never encountered a situation where it's a good idea to restrict access for your developer. I don't see how it would protect your idea, or how it would help with hiring someone else.

Would you need to turn over your documentation on your super-secret IP if it doesn't relate to the work he would be doing? No, of course not, but the developer will certainly need things relating to your project in order to do his job--it's better to give him everything from the start to make life easier for the both of you. The alternative is that stuff will likely be missed or left out, leading to a long drawn out back-and-forth between you and the developer.

If it comes down to trust issues: I'd suggest doing as much legwork as possible to find a solid developer, turn your business specifications over to them, and then say 'this is what I want.' For a lot of businesses, especially when the owner doesn't have a strong technical background, this can be the best route to take.

answered Oct 8 '11 at 13:24
Blank
Alex
1,156 points

0

You hire established professionals who prefer not to lose their reputation by stealing a client's idea.

You may not want the developer to have access to your live website (protect client data?), but you can give them files to create their own development site. Better yet, you should create a staging site for testing and give them access to that.

answered Oct 10 '11 at 13:15
Blank
Jeff O
6,169 points

Your Answer

  • Bold
  • Italic
  • • Bullets
  • 1. Numbers
  • Quote
Not the answer you're looking for? Ask your own question or browse other questions in these topics:

Web Dev