Re: how to rename and deploy a pylons app?

2008-09-24 Thread Jonathan Vanasco
I've had to do this before... you'll want to rename the appropriate files / directories , and then replace all the module name instances in your project ie: if your project is named ASDFGHJK , then you'll need to rename: /ASDFGHJK /ASDFGHJK/asdfhjk /ASDFGHJK/asdfhjk.egg-info then do a s/ASDFGHJ

Re: how to rename and deploy a pylons app?

2008-09-22 Thread wellhong
Thank you all so far for the responses. Wyatt, what is the reasoning as to why you'd avoid FCGI? On Sep 22, 2:49 pm, Wyatt Baldwin <[EMAIL PROTECTED]> wrote: > On Sep 22, 11:52 am, wellhong <[EMAIL PROTECTED]> wrote: > > > > > Hi all, > > > I'm new to pylons and python web development. I've star

Re: how to rename and deploy a pylons app?

2008-09-22 Thread Wyatt Baldwin
On Sep 22, 11:52 am, wellhong <[EMAIL PROTECTED]> wrote: > Hi all, > > I'm new to pylons and python web development. I've started working on > an application on my workstation but: > 1. would like to know how to rename the app (since I had come up with > a random name). i've tried searching for th

Re: how to rename and deploy a pylons app?

2008-09-22 Thread Mike Orr
On Mon, Sep 22, 2008 at 11:52 AM, wellhong <[EMAIL PROTECTED]> wrote: > I'm new to pylons and python web development. I've started working on > an application on my workstation but: > 1. would like to know how to rename the app (since I had come up with > a random name). i've tried searching for t

Re: how to rename and deploy a pylons app?

2008-09-22 Thread jerry
Hi, You don't "rename" your project, you name it anything and distribute it (http://wiki.pylonshq.com/display/pylonsdocs/Distributing+Your +Project), or add its absolute path (quick hack!) to your /site-packages/easy-install.pth As for production deployment, there have been multiple related leng