On 10/31/05, Aggelos Orfanakos <[EMAIL PROTECTED]> wrote: > > What I meant was, is there an easy way to _move_ my app between > systems. Like, move a single file and then install it on the target > system? For example, many packages only require that you do: $ python > setup.py install > > And what about the TG components? How can I make a machine in which TG > isn't installed, run an app written in TG? Is it necessary to install > TG in the target machine too?
Yes, it is necessary to install TurboGears on your deployment machine. If you quickstarted your application, you should have a setup.py file. "python setup.py bdist_egg" will give you an Egg file that you can copy over to your deployment machine and easy_install. When you do that, your start script is available to start up the TurboGears server. Kevin

