Skip to content

Development Guide

Tomy Hsieh edited this page May 2, 2023 · 2 revisions

Most useful commands are available in the Makefile, which can be triggered with make [subcommand]. You might also want to check out rails command guide.

Setup / Install

  1. Install Ruby 3.1.2
  2. Install dependencies
make install  # bundle install

Start the development server

make server  # bin/rails server

Using make server automatically bind on all IPs (0.0.0.0) instead of just localhost (127.0.0.1), which is the default for bin/rails.

Migration

Migration is not strictly required for MongoDB which is why there isn't one at the moment.

Clone this wiki locally