rdp
rdp

Reputation: 2088

Running rails project on another machine

I am developing a website on rails. I tried to move my project on another machine and start the rails server but the server doesn't start. Instead when I enter the command rails s in terminal it creates various files. Please let me know the steps I should follow to run my project on another machine. I have rails installed there.

Upvotes: 1

Views: 228

Answers (1)

Alex Lang
Alex Lang

Reputation: 1308

sounds like the other machine has rails 2 (instead of 3) installed, where running rails <something> would generate a new rails app called <something>

Upvotes: 1

Related Questions