On Wed, 2002-11-13 at 15:27, Edmund Lian wrote: > How does everybody else handle the issue of multiple developers working on > the same application? I'm hoping that there's a neat way of setting up the > AppServer and autoreload so that people don't step on each other's toes. > Setting up separate AppServers for each developer is one way of doing it, > but it seems a bit excessive.
I think that if the developers are working on the same application, it's probably best to have multiple AppServers, and to keep the code in CVS. When a developer finishes some aspect of the application he should check in the code, and the others can update their local copies of the source tree. If you share the AppServer, things as simple as syntax errors (which will cause a traceback when you try to import the module) created by one developer will cause tracebacks for the others, leading to low productivity and lots of hair-pulling. :) -- Jason D. Hildebrand [EMAIL PROTECTED] ------------------------------------------------------- This sf.net email is sponsored by: Are you worried about your web server security? Click here for a FREE Thawte Apache SSL Guide and answer your Apache SSL security needs: http://www.gothawte.com/rd523.html _______________________________________________ Webware-discuss mailing list [EMAIL PROTECTED] https://lists.sourceforge.net/lists/listinfo/webware-discuss
