sotirac wrote:
> Just trying to get a feel for what other developers are doing when
> deploying to a production server.  There are some differences between
> my development machine and production server such as the location of
> my media files, the database settings, and if I want to enable caching
> or not.   Right now my option is to comment out some of the code and
> uncomment the other values.  This is time consuming and error proned.
> How do you deal with this issue of working in your development machine
> and then having to deploy the same code into your production server.

Most systems I work on are complex multidev setups, testing setup, 
production (multiple web boxes, db, etc.)

I have found capistrano to be an excellent tool for automating all the 
steps needed to deploy to the various above targets.  It's in Ruby, but 
I was able to use it effectively and I don't know Ruby(At least I don't 
think I do :).  It is not a simple tool though.  Probably overkill for 
people with just a simple hosted server.


I have a proj_base_settings.py that has strangely  enough the base 
settings for project proj

Each dev/test/production environment has a proj_settings.py that imports 
proj_base_settings.py and overrides whatever is required.  This is often 
just setting DEBUG, email addy, and db.  This file is not checked into 
source control.


I prepend proj_ to all the settings files so I can have multiple 
projects in same python path with out conflicts.


-- 
Norman J. Harman Jr.
Senior Web Specialist, Austin American-Statesman
___________________________________________________________________________
Get off the sidelines and huddle up with the Statesman all season long
for complete high school, college and pro coverage in print and online!

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to