Creating a rails app within a rails app

hi all

due to hosting constraints, i need to deploy a rails site within an
existing rails site.

where do i need to “cd” to, to issue the rails command to generate the
site? i’ve tried the public folder but that doesn’t appear to be
working.

thanks

marc

On 2/4/07, libsfan01 [email protected] wrote:

thanks

marc

Might check the rails list.
http://www.ruby-forum.com/topic/3552
mirror: http://www.ruby-forum.com/forum/3
or possibly here: http://lists.rubyonrails.org/mailman/listinfo/rails
and if there’s anything I’ve left out, you can search for it here:
http://rubykitchensink.ca/

On Feb 4, 5:56 pm, “libsfan01” [email protected] wrote:

due to hosting constraints, i need to deploy a rails site within an
existing rails site.

where do i need to “cd” to, to issue the rails command to generate the
site? i’ve tried the public folder but that doesn’t appear to be
working.

Hello. The ruby-talk mailing list (which also appears as the
comp.lang.ruby newsgroup) is for discussion of the Ruby language in
general. For questions about Ruby on Rails (a web framework that
happens to use the Ruby language), you’ll probably want to ask on the
Rails group:

http://groups.google.com/group/rubyonrails-talk

On 2/5/07, libsfan01 [email protected] wrote:

hi all

due to hosting constraints, i need to deploy a rails site within an
existing rails site.

where do i need to “cd” to, to issue the rails command to generate the
site? i’ve tried the public folder but that doesn’t appear to be
working.

Hi,

I suppose you don’t generate it within some folder of the main site.
These are possibilities that I can think of (note that I’m not a
railsist :wink: so there might be other options):

  1. generate theme side by side, and link them via .htaccess/httpd.conf
    and mod_rewrite

  2. if they do not overlap, merge them into one site (i.e. put
    everything in one place and fix routing so everything appears where it
    should)

  3. put the other site into some unimportant folder (vendor) or create
    separate folder somewhere in the main app top folder. They do the
    magic with .htaccess/httpd.conf.

You don’t want to put the site in the ‘public_html’ dir cause that
would reveal your sources to public. OTOH, you need the the public dir
of your other site to be visible. So you need to use mod_rewrite,
symlinks or copying the files where they belong.

As I said, there might be other options.