Hi guys,
I’ve got a Rails app that is dependent on a Rails Engine to function. I would like know how to deploy such an app to Heroku and especially if there’s somebody who has made a tutorial.
Thank you in advance.
Hi guys,
I’ve got a Rails app that is dependent on a Rails Engine to function. I would like know how to deploy such an app to Heroku and especially if there’s somebody who has made a tutorial.
Thank you in advance.
Are you facing any problem deploying your app with engine? I had blogit engine in my rails app and there was nothing special about it. I just did following and it worked:
$ git push heroku master
$ heroku run bundler install
It shouldn’t be different to an application that doesn’t use a rails engine. Is there a specific problem you have encountered?
Fred
You can place your engine into the vendor directory and then reference it in the Gemfile with the vendor path.
I have blogit engine running on an app and I don’t see anything for world(public) viewing of a particular users blog How’s this supposed to work?