Re: What does an ideal django workflow setup look like?

2010-10-26 Thread Celso González
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.



Re: Installing Django on Linux-Derbian using virtualBox on Windows 7 Machine

2011-01-21 Thread Celso González
On Fri, Jan 21, 2011 at 07:10:25AM +0530, Kenneth Gonsalves wrote:
> On Thu, 2011-01-20 at 22:58 +0100, Ivo Brodien wrote:
> > > But in order to do that, don't I need to have the Django source file
> > somewhere in my  computer/ or in my case.
> > 
> > apt-get gets packages from the internet.
> > 
> > And btw. Ubuntu is based on Debian. 
> 
> and btw, the django version in debian is too old to be of use

anyway you are able to use virtualenv
 

-- 
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-users@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.