Re: Multiple app environments on the same machine - settings & more

2007-10-15 Thread Jeremy Dunck
On 10/15/07, RajeshD <[EMAIL PROTECTED]> wrote: > > 1. Don't add myapp_* to site-packages at all. Instead keep them in two > directory roots say /home/apps/prod and /home/apps/preprod. Similarly, > you can have two different settings files for the two environments. > > 2. In your Apache vhost

Re: Multiple app environments on the same machine - settings & more

2007-10-15 Thread RajeshD
> The idea is I would like to set up a production (prod) and pre- > production (preprod) and have preprod updated and unit tests run > everytime I commit changes to the SVN repo from my local machine (this > can be easily done with svn-hooks). > > No problems so far, however what worries me is

Multiple app environments on the same machine - settings & more

2007-10-15 Thread adam
Hello Djangonauts, First of all let me say I'm relatively new to Django and Python. The problem I came across is how to setup multiple (two, to be precise) enviroments for my Django app on one physical machine runnig mod_python. The development environment is set up locally of course. The idea