commands.sh

rails new

all

Create a new Rails application.

More info →

Options (3)

-d, --databaseboolean

Create a Rails app with `postgresql` as the database

Example: rails new {{app_name}} {{[-d|--database]}} postgresql
-J, --skip-javascriptboolean

Create a Rails app without generating JavaScript files

Example: rails new {{app_name}} {{[-J|--skip-javascript]}}
-h, --helpboolean

Display help

Example: rails new {{[-h|--help]}}

Examples (5)

Create a Rails app named `blog` in the current directory

Create a Rails app with API-only configuration

rails new app_name --api

Create a Rails app with `postgresql` as the database

rails new app_name [-d|--database] postgresql

Create a Rails app without generating JavaScript files

rails new app_name [-J|--skip-javascript]

Display help

rails new [-h|--help]
made by @shridhargupta | data from tldr-pages