From the course: Installing and Running Ruby on Rails 6

Unlock the full course today

Join today to access over 22,400 courses taught by industry experts or purchase this course individually.

Launch a Ruby on Rails project

Launch a Ruby on Rails project - Ruby on Rails Tutorial

From the course: Installing and Running Ruby on Rails 6

Start my 1-month free trial

Launch a Ruby on Rails project

- [Instructor] With everything installed and configured, we're ready to launch a Ruby on Rails project. Anytime you're launching a Ruby on Rails project, we need to follow a similar set of steps. The first is to create a project or download it if it belongs to someone else. Then you want to make sure that you have the database for the project. You want to configure the project so that it uses the database. Then you're going to run bundle install. Now that happened when we created our project. Remember, it did that as an extra step already. But if we were downloading it from someone else, or if we had made updates to it, we would run bundle install again. Bundle install goes and gets all of those code libraries, the ruby gems that we need and downloads them into the project so it's ready to go. Once we've done that, we'll have all the code and all the databases and all the configuration that we need. And the last step is…

Contents