bx2 wrote:
The best option is to use buildout (there is no need for creating
virtualenv - much more simple and much more flexible solution). Also
it will be easier to further deploy your projects.

I see this buildout.cfg example from
http://pypi.python.org/pypi/djangorecipe
and have questions because it's just what I want to use once I understand it:

[buildout]
parts = satchmo django
eggs = ipython

[satchmo]
recipe = gocept.download
url = http://www.satchmoproject.com/snapshots/satchmo-0.6.tar.gz
md5sum = 659a4845c1c731be5cfe29bfcc5d14b1

[django]
recipe = djangorecipe
version = trunk
settings = development
eggs = ${buildout:eggs}
extra-paths =
  ${satchmo:location}
project = dummyshop


suppose I want a 1.1.X version  --  
http://code.djangoproject.com/browser/django/branches/releases
shows   1.1.X as the exact name for that branch so I'd substitute that in.

Suppose I wanted to use the fez.djangoskel recipe for its skeleton tests and 
project templates
and eggs.  Can you use it to repackage your project after adding specifics to 
it?

The examples all cover generating blank projects -- you can package up finished 
projects too, right?

I'm reading at  http://www.buildout.org/docs  and see some likely recipes to 
try (as a tutorial exercise)
djangout, djangorecipe, fez.djangoskel,

but would appreciate a suggestion for a safe example to run on my development 
machine that does
a django install locally and then the changes to push it to a server.

How does changing settings = development  to be settings = onserver  do a 
deployment?
Where are the details put?

I'll start doing these tutorials in no particular order if no better 
suggestions come up:
http://jacobian.org/writing/django-apps-with-buildout/
http://www.buildout.org/docs/tutorial.html
http://www.justanothercodemonkey.com/2009/08/deploying-django-with-buildout.html

Thanks,

John

--
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