# Creating a Rails App Using JumpStart Pro

DevFeed: [Creating a Rails App Using JumpStart Pro](<https://devfeed.tech/articles/creating-a-rails-app-using-jumpstart-pro-28289.md>)

Original publisher: [Read original article](<http://fuzzyblog.io/blog/rails/2022/07/07/creating-a-rails-app-using-jumpstart-pro.html>)

Author: Fuzzygroup

Published: 2022-07-07T06:36:00Z

Content type: tutorial

Language: en

Sources: [Scott Johnson](<https://devfeed.tech/sources/scott-johnson.md>)

Topics: [Rails](<https://devfeed.tech/topics/rails.md>), [Development](<https://devfeed.tech/topics/development.md>), [GitHub](<https://devfeed.tech/topics/github.md>), [Ruby](<https://devfeed.tech/topics/ruby.md>), [test](<https://devfeed.tech/topics/test.md>)

Tags: [github](<https://devfeed.tech/tags/github.md>), [guide](<https://devfeed.tech/tags/guide.md>), [jumpstart](<https://devfeed.tech/tags/jumpstart.md>), [npm](<https://devfeed.tech/tags/npm.md>), [rails](<https://devfeed.tech/tags/rails.md>), [ruby](<https://devfeed.tech/tags/ruby.md>), [test](<https://devfeed.tech/tags/test.md>)

## AI overview

A tutorial explaining how to create a Rails application from a JumpStart Pro template, clone it locally, configure Ruby and the database, install dependencies, and run Rails tests. It also discusses resolving an asset-pipeline error by using Node.js 16 and rebuilding the application's JavaScript.

## Source excerpt

The view of the shelling of Kharkiv at 4 am Donate Now to Pizza for Ukraine The following blog post is an excerpt from a series of articles I'm working on about JumpStart Pro. I found myself referring to the steps below that I thought it might be generally useful for people. I'm going to walk you through the "post purchase" experience with Jump Start Pro (JSP). This will guide you through creating a new app using JSP. Step 1: Cloning an App Into Your Github Here's what you do: Purchase your Jumpstart Pro license. Log in to https://Jumpstartrails.com/ if you haven't already. Click on your license name. You will end up at a page which tells you to visit your Github repo. You need to goto: https://github.com/orgs/Jumpstart-pro. This in turn will take you here: https://github.com/Jumpstart-pro Click into the Rails repository https://github.com/Jumpstart-pro/Jumpstart-pro-rails Click the green Use This Template button. Change the owner to be your github name Enter the name of the NEW repo: Set your description if you care (I never do). Change the setting to be private. I checked off [ ] include all branches (no clue if that was right or not) Click the green Create repository from template button Step 2: Getting that Cloned App Onto Your Machine Github is going to clone the Jumpstart pro rails repo over to your personal github account. Here's what's next On your new repo, click the green Code drop down and get the clone url . On your development machine, change to your local development directory and clone the repo: git clone (what you copied) Set up your local ruby to be 3.1 if you don't have it. Run a bundle install Edit config/database.yml and change database names as needed. Now you want to run: bin/rails db:create Step 3: Setup and Getting to Green Tests in a Rails 7 World When you're starting with something complex that someone else built then tests are always, always, always your friend. So this means that you start with: bin/rails test This is going to fail but we