Ruby on Rails API only app | Postgres
01 - Create a new API-only Rails app and setup postgres database
rails new my-app --api --database=postgresql -T
02 - Basic Scaffold
01 - Model
This step is for creating a very basic level of model for us to work in. If you know already, or wish to apply your own custom models with relationships you can skip this step.