Re: development / production server

2005-03-09 Thread Woodchuck
correct me if i'm wrong, but if you do that, you would be turning your production server into your development server! yikes. woodchuck --- Ben Kim [EMAIL PROTECTED] wrote: What is the common practice to handle file sync between development server and production server? Is there a trivial

RE: development / production server

2005-03-09 Thread Allistair Crossley
. We'll look at a dual server setup next month I believe. -Original Message- From: Woodchuck [mailto:[EMAIL PROTECTED] Sent: 09 March 2005 15:37 To: Tomcat Users List Subject: Re: development / production server correct me if i'm wrong, but if you do that, you would be turning your

Re: development / production server

2005-03-09 Thread Tim Funk
Use CVS for version control. (or any version control) Write a script which - Checks out from CVS the version tagged for production - Builds and precompiles the webapp - Copies the webapp to production - Restarts the webapp (or tomcat) *Always build your production webapp from a CVS tagged

RE: development / production server

2005-03-09 Thread Ben Kim
Thank you all for advices. In my case I run Netbeans on my PC and deploy the result to the server. It's an addition to existing applications so overwriting production files is not a concern. I just wondered if there's a trivial way to sync files, like I would in Dreamweaver. I gather perhaps