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
Answers were Sorted based on User's Feedback
Answer / rohit kumar shaw
For any Scripting languages like PHP, Ruby etc need a server
(It may be virtual server i.e. localhost) to run their code.
When you run this code in command line ruby script/server it
means you already started your apache server to run the code
and hence you can see your output in browser. If you close
your command line window, it means apache server is stop
working now and then you can't be able to see your output
anymore.
Is This Answer Correct ? | 7 Yes | 3 No |
Answer / bidesh mondal
if u run the server (ruby script/server -d) then the command
line will close ,but server is running.The server will run
until the machine is restart. you can start different port
using ruby script/server -p 3001 -d
Is This Answer Correct ? | 4 Yes | 1 No |
Answer / 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 |
Answer / chandan kumar jha
Configure nginx server for running rails application.It is not required to run ruby script/server only need passenger gem.After restarting system not need to start rails server application automatically started.
Is This Answer Correct ? | 0 Yes | 0 No |
Configure nginx server it keep your application always running no need to start rails server every time.Your application automatically restarted after your system restart.
Is This Answer Correct ? | 0 Yes | 0 No |
Who designed active record in rails?
difference between member routes and collection routes ?
what is Rails Active Record in Ruby on Rails?
Explain how does rails implement ajax?
What are naming conventions?
what is Ruby on Rails?
How many types of variables are available in ruby class?
Difference between argument and parameter in ruby on rails ?
What is the functionality of Model views and controllers
What is the directory structure of rails?
Which command is used to create a migration?
Name some rails ide or editor.