Skip to content

Latest commit

 

History

History

app-backend

Backend Boilerplate Ruby on Rails

Project Structure

This project follows the standard Rails project structure.

Getting started

  1. Make sure the required version of Ruby (3.1.2) is configured on your local env.
curl -sSL https://get.rvm.io | bash
rvm install 3.1.2
  1. Build your app.
bundle update --bundler && bundle update && npm install && bin/rails db:migrate RAILS_ENV=development
  1. Start your app.
bin/rails server