Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to start a new rails project without overhead of actioncable?

I know most of the rails experts know the answer to this simple question but since not every new rails app is going to be a chat application or would even need a redis/websockets sitting in there, how to create a new rails project without actioncable?

$ rails new <project name> --option

like image 999
Marvin Danig Avatar asked Sep 07 '25 18:09

Marvin Danig


1 Answers

Should be rails new --skip-action-cable

Found via rails new --help

like image 59
Dylan Pinn Avatar answered Sep 11 '25 10:09

Dylan Pinn