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 bundler in rails.
How many types of relationships does a model has?
How you run your Rails Application without creating database ?
Explain testing in rails.
How do I find only duplicate entries in a database table?
Explain how does rails implement ajax?
What is a proc ?
what are the limits of Ruby on Rails?
What is the purpose of load in ruby?
what are the positive aspects of Rails?
Do you know what is “yield” in ruby on rails?
what is the difference in scope for these two variables: @@name and @name?
Do you know the role of garbage collection in ruby on rails?
Explain dry in rails?
Mention the differences between the observers and callbacks in ruby on rails.