From 2c442bfedf1fb0cec1ba6219562f1793ebd8c136 Mon Sep 17 00:00:00 2001 From: Thomas Scherz Date: Fri, 22 Nov 2024 16:41:53 -0500 Subject: [PATCH] Includes NVM and Yarn in deploy. --- config/deploy.rb | 1 + 1 file changed, 1 insertion(+) diff --git a/config/deploy.rb b/config/deploy.rb index 13722a8c..5c71899d 100644 --- a/config/deploy.rb +++ b/config/deploy.rb @@ -27,6 +27,7 @@ on roles(:all) do execute 'gem install --user-install bundler' execute "bundle config path 'vendor/bundle' --local" + execute 'yarn install' execute "mkdir -p #{fetch(:deploy_to)}/static" execute "cp #{fetch(:deploy_to)}/static/.env.production #{fetch(:release_path)}/ || true" end