- Make sure ruby and rails are all installed. use
ruby -v
rails -v
to check.
- Then clone this repository to local computer. In the directory, use
bundle install
to install all dependencies.
- Create database and migrate schema using
rails db:create
rails db:migrate
- Run this application on http://localhost:3001 using
rails s -p 3001
- If the page shows
{status: "hello world!"} then the backend is successfully launched.