Is there a way to set a default stage in Capistrano 3?
I\'ve tried putting set :stage, :production inside deploy.rb but that didn\'t work, it gives the erro
set :stage, :production
You can add the following line to your deploy.rb, which will prevent Capistrano from expecting a stage:
set :stages, ["production"]