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 |
What are the servers supported by ruby on rails?
what is the difference between redirect and render in Ruby on Rails?
What are gemsets in rails?
What is the function of orm in ruby on rails?
Is it possible to build a 50% bespoke e-commerce platform hence having the ability to customize everything down the line? For example would it make sense to start coding an application on the Ruby on Rails framework but where the most complex/time consuming code pieces (e.g. shopping cart, etc) can be initially bolted on (hence diminishing development time and cost) having the ability to change them completely further down the line?
What is bundler?
What is rails migrations?
What are the major components of Ruby on Rails?
What is the use of super in Ruby Rails?
When are self.up and self.down methods used?
How to find second max element from database ?
What do you understand by rails?