Learning Rails Pt. 1
Mar 14, 2023
·
rails
Go ahead and create a new Rails application using the following command.
rails new hello-worldThis will create a Rails application in the hello-world folder.
Go inside the hello-world folder.
cd hello-worldRun the created Rails application using the following command.
rails serverThis command boots up the server at http://localhost:3000. Open this in the web browser and you should see the Rails default welcome page. If that is the case, you just have created your very first web application using the Rails framework.