Ledgemonkey
Ledgemonkey

Reputation: 7481

How do I run a Ruby application on my local development machine

I have a Ruby web application that I would like to run/edit on my local development machine, I have followed various tutorials including this one:

http://www.alexbernard.fr/fichiers/blog/Installer-Ruby-On-Rails-sur-un-Wamp-Server.pdf

I'm stuck on step 5 I don't understand if Apache2 is a new directory or is the original wamp Apache directory. Step 6 I have added the code to the httpd.conf in my wamp apache config but the server will not restart - so I've gone wrong somewhere.

I'm really looking for some guidance to what i should download and what i need to run the application.

any help would be appreciated

thanks

Upvotes: 0

Views: 8837

Answers (2)

Matt Briggs
Matt Briggs

Reputation: 42158

Don't follow that guide, use http://railsinstaller.org/

Upvotes: 2

Rubyman
Rubyman

Reputation: 874

type rails s command from your project directory. You will get some errors, search for solutions. once your server is running with rails s command, you can access application with localhost:3000 in your browser address bar. good luck..

Upvotes: 1

Related Questions