On Fri, Oct 22, 2010 at 08:02:56AM -0700, Ken wrote:

Hi

> I understand there are many different ways and products to use to
> setup a great workflow for developing in django, but would like to
> hear how you or your startup team (or corporate dev group) does it.
> Specifics would be amazing, as I need a little hand holding, i.e.
> please cover anything and everything that I should know in order to
> develop efficiently, robustly, and eventually collaboratively.

There are common ideas like +1 South, local_settings.py, vcs and
helper scripts like fabric

> Basically, please explain it in a way that a layman can follow the
> steps and setup a workflow without pulling his hair out. =P

ok, my system

Every project has its own virtual enviroment

-virtualenv
--bin
--include
--lib
--requirements.txt
--myproject
---apps
...
---static
---templates


*All the structure and contents goes into git or vcs of choice
*pip freeze > requirements.txt and pip install -r requirements.txt
to handle the external soft installed
*in .gitignore I override bin, include, lib, src directories

Just using git and virtualenv im able to create the same enviroment
quickly in several machines (dev, testing, production)

Still working on the database exports

-- 
Celso González (PerroVerd)
http://mitago.net

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

Reply via email to