pyramid 1.2.6 - problem deploying first production project

2012-01-28 Thread Salvor Hardin
Since I'm new to pyramid python (started both Friday), I'm not sure if I found a bug or am doing something wrong. I didn't modify the MANIFEST.in file, but these 7 files are not deployed when I install the egg. CHANGES.txt MANIFEST.in README.txt development.ini production.ini setup.cfg setup.py

Re: deploying to production?

2009-05-25 Thread Chris Withers
Chris Miles wrote: paster serve is a reasonable option. Like I said, mod_wsgi is preferred for me as it simplifies service control. Yes, there's a lot to be said for that... Most systems already know how to start and stop Apache... Is there a good how-to anywhere on serving with

Re: deploying to production?

2009-05-25 Thread Graham Dumpleton
On May 26, 1:57 am, Chris Withers ch...@simplistix.co.uk wrote: Chris Miles wrote: paster serve is a reasonable option.  Like I said, mod_wsgi is   preferred for me as it simplifies service control. Yes, there's a lot to be said for that... Most systems already know how to start and

deploying to production?

2009-05-20 Thread Chris Withers
Hey All, As a total newbie to Pylons I thought I'd ask some questions about deployment: - which bits of a Pylons project do you version control? * - how do you build all the other bits? * - what do people use to serve their sites? Is whatever paster serve blah.ini using suitable for

Re: deploying to production?

2009-05-20 Thread Ross Vandegrift
On Wed, May 20, 2009 at 02:28:52PM +0100, Chris Withers wrote: - which bits of a Pylons project do you version control? * I version control anything that isn't automatically regenerated. That includes the Paster templates and boilerplate code (since it's rarely boilerplate when I'm done!) -

Re: deploying to production?

2009-05-20 Thread Wyatt Baldwin
On May 20, 6:28 am, Chris Withers ch...@simplistix.co.uk wrote: Hey All, As a total newbie to Pylons I thought I'd ask some questions about deployment: - which bits of a Pylons project do you version control? * It's been a while since I started a new Pylons project from scratch, but I

Re: deploying to production?

2009-05-20 Thread Wichert Akkerman
Previously Chris Withers wrote: * I'd like to be using buildout for things wherever possible, the following is what I have so far: [buildout] parts = pylons develop = myproj [pylons] recipe = zc.recipe.egg eggs = Pylons PasteScript myproj myproj should depend on Pylons

Re: deploying to production?

2009-05-20 Thread Chris Miles
On 20/05/2009, at 11:28 PM, Chris Withers wrote: As a total newbie to Pylons I thought I'd ask some questions about deployment: - which bits of a Pylons project do you version control? * The whole package source that paster creates, minus any autogen fluff like .egg-info dir. - how