-
Notifications
You must be signed in to change notification settings - Fork 0
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.
- Install Ruby 3.1.2
- Install dependencies
make install # bundle installmake server # bin/rails serverUsing 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 is not strictly required for MongoDB which is why there isn't one at the moment.