Trip
Trip

Reputation: 27114

How do you boot a rails app on a remote server into Development?

I totally apologize for being so naiive. But when I deploy to production, it is automatically boots up in production mode.

How do I alternatively boot this up in development mode?

Upvotes: 3

Views: 559

Answers (1)

Chris Cherry
Chris Cherry

Reputation: 28554

Depends on what you are using to run your Rails application.

Often you can also set the environment variable RAILS_ENV to do this as well, for example: RAILS_ENV=development rails server

Upvotes: 3

Related Questions