LearningRails
LearningRails

Reputation: 1

Putting Rails app on GAE

I am using Rails 2.3.4 on windows. What are the steps to put my rails application on google app engine and allow only authorized users to view it?

Upvotes: 0

Views: 309

Answers (2)

jonnii
jonnii

Reputation: 28312

Does it have to be GAE? If you just want a cloud solution you could maybe look at heroku (http://heroku.com/).

If it has to be GAE you'll need to make sure your app runs on jruby. You're also not going to be able to use active record.

Here's a good guide on how you can get a rails app on GAE:

http://olabini.com/blog/2009/04/jruby-on-rails-on-google-app-engine/

Upvotes: 2

LearningRails
LearningRails

Reputation: 1

It does not have to be GAE. I just need to be able to put my rails app on a website where a limited set of users can view it. I have never deployed a rails app before so I am not sure which is the best way to get this done.

Upvotes: 0

Related Questions