am new to ruby. tell me one thing.
i can view my project on browser when i write "ruby
script/server". otherwise i cant view my project on localhost.
what i have to do to view my project always on browser?
pls help
Answer Posted / manish nautiyal
ruby script/server -d
with -d your server will run always. This is for only your localhost machine. When you deploy your project on live server than you have to use apache to run it.
And to see it in the browser you have to type
http://localhost:3000/
3000 port is by default port for ruby on rails you can change the port by using -p
ruby script/server -d -p 3001
Is This Answer Correct ? | 3 Yes | 0 No |
Post New Answer View All Answers
Explain Get and post method?
Explain the features of ruby on rails.
What are rails validation used for?
How will be the future for ruby on rails?
Explain some features of nested scaffolding.
How would you create a controller for the subject?
How is direct different from render?
Tell me what is the difference between the observers and callbacks in ruby on rails?
What are the various changes between the rails version 2 and 3?
What role does garbage collection play?
what is the command to create a migration?
how you define Instance Variable, Global Variable and Class Variable in Ruby?
what is the difference between new, save and create?
Who developed ruby on rails?
How are blocks created?