Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Uploading some specific features but not all developed features from development to live server

This is more or less related to project management and also with every developer. How you guys handle this situation when you have developed many features on development site and all are tested by client and ready to go live.

These features have some code in common files ie. One PHP file have the code for one feature as well as one other feature.

But client will ask you to upload only 2 feature out of 10 or 15. Files are common if you upload that file directly will leads to error problems because they have code for other features. If you upload all updated files then all feature will be live.

A possible way is go back and comment out that feature which is not needed live for now from common files. But there is possiblities to forgot to comment anywhere else.

This is also not a good way and at last client will say what happen everything was tested on development server and why these bugs and errors are introduced on live server. This will reduce the faith on developers.

I faced this problem many times and could not found any good way to avoid these issues. So I am thinking that you guys also facing or faced this problem.

I am thinking versioning system can help here.

How you guys are handling this?

Could you share ideas?

like image 895
Shakti Singh Avatar asked Mar 22 '11 05:03

Shakti Singh


2 Answers

The situation you are describing is impossible to manage sanely. I don't believe it would be possible to make this situation work, but the real question is why would you want to?

There are a number of issues with the scenario you describe, but the core issue is really this. You are testing one thing, and deploying another. You acknowledge in your question the interconnected nature of changes. In reality it is even more difficult than you describe. You simply cannot know how a system will behave when you try and deploy parts of a tested solution. Why test it at all?

The only sensible solution I can see is to have a sandbox environment where new features are demonstrated. However keep your test enviornment only for testing stuff that will go live. So in your example the one or two features are in test, ready to be signed off for prod, and the other featues are locked in the sandbox.

This leads to the next problem, which is managing your source code. I don't see any sane strategy for managing the arbirtrary inclusion of features from a code base. Even under the mostflexible system I know, Perforce, any branching straegy would require awful resolves on merges as you try to move stuff in and out.

I have seen this happen, and believe me it gets very ugly.

I suggest you come up with a better solution. Talk to your client and change the way things are done. It will be better for you, and in the long run better for them.

like image 193
Phil Wallach Avatar answered Sep 19 '22 02:09

Phil Wallach


A solution could be to use cheap version branching as provided by VCS such as Git or Mercurial. The project would consist in many feature branches used to develop said features and build branches where feature branches would be merged and adhoc fixing would take place. When a build branch is ready for test, it is tested, fixed if needed and then the build branch is shipped to production platform. When features have been validated, the build branch can be merged into remaining feature branches so the branches under development can integrate the "official" changes. To sum up, the application is custom built from existing feature branches as needed.

like image 30
alfmartinez Avatar answered Sep 19 '22 02:09

alfmartinez