Launch your Rails database in under 5 minutes

A step by step tutorial

Robert Chen

--

This will be strictly instructional, follow this step by step guide to quickly build your backend.

  1. In your terminal: rails new APP-NAME --api
    - Or add this flag if you have Postgres installed and would like to use it: rails new APP-NAME --database=postgresql —-api
    - If you choose to use Postgres, remember to turn Postgres…

--

--