2016-12-15 152 views
3

失败的命令cd client && npm run build:production安装NPM来自https://github.com/shakacode/react_on_rails/blob/master/lib/tasks/assets.rakeCapistrano的部署失败react_on_rails当经由NVM

当使用capistrano-npmcapistrano-nvm它创建/tmp/my_app_name/nvm-exec.sh与这些内容并使用它来在根导轨应用package.json运行npm install。但它并不用于为React客户端运行命令。

#!/bin/bash -e 
source "$HOME/.nvm/nvm.sh" 
nvm use $NODE_VERSION 
exec "[email protected]" 

这里是输出:

cap production deploy 
rvm 1.27.0 (latest) by Wayne E. Seguin <[email protected]>, Michal Papis <[email protected]> [https://rvm.io/] 
ruby-2.3.1 
ruby 2.3.1p112 (2016-04-26 revision 54768) [x86_64-linux] 
00:00 nvm:wrapper 
     01 mkdir -p /tmp/rails_cap_deploy/ 
    ✔ 01 [email protected] 0.034s 
     Uploading /tmp/my_app_name/nvm-exec.sh 100.0% 
... 
... 
00:16 npm:install 
     01 /tmp/my_app_name/nvm-exec.sh npm install --production --silent --no-progress 
     01 Now using node v6.9.2 (npm v3.10.9) 
    ✔ 01 [email protected] 4.370s 
00:20 deploy:assets:precompile 
     01 ~/.rvm/bin/rvm default do bundle exec rake assets:precompile 
     01 cd client && npm run build:production 
     01 
     01 sh: 1: 
     01 npm: not found 
     01 
     01 rake aborted! 
     01 Command failed with status (127): [cd client && npm run build:production...] 
     01 /opt/my_app_name/stg/shared/bundle/ruby/2.3.0/gems/react_on_rails-6.3.2/lib/tasks/assets.rake:33:in `block (3 levels) in <top (required)>' 
     01 /opt/my_app_name/stg/shared/bundle/ruby/2.3.0/gems/rake-12.0.0/exe/rake:27:in `<top (required)>' 
     ... 
     01 Tasks: TOP => assets:precompile => react_on_rails:assets:compile_environment => react_on_rails:assets:webpack 
     01 (See full trace by running task with --trace) 
(Backtrace restricted to imported tasks) 
cap aborted! 
SSHKit::Runner::ExecuteError: Exception while executing as [email protected]: rake exit status: 1 
rake stdout: Nothing written 
rake stderr: cd client && npm run build:production 
sh: 1: npm: not found 
rake aborted! 
Command failed with status (127): [cd client && npm run build:production...] 

这里是我的依赖关系:

Ubuntu 16.04 
rvm 1.27.0 
ruby-2.3.1 
NPM - 3.10.9 
NODE - v6.9.2 
NVM - 0.32.1 

Gems: 
rails (5.0.0.1) 
react_on_rails (6.3.2) 
capistrano (3.7.0) 
capistrano-npm (1.0.2) 
capistrano-nvm (0.0.6) 
capistrano-passenger (0.2.0) 
capistrano-rails (1.2.0) 
capistrano-bundler (~> 1.1) 
capistrano-rvm (0.1.2) 

Capfile: 
require 'capistrano/npm' 
require 'capistrano/nvm' 
+0

嘿你解决这个问题?我试图通过Capistrano部署来运行React on Rails,但我并不真正了解我应该做什么^^“ –

回答

0

这里是我 “固定” 它。在react_on_rails使用的我的assets.rake中,我修改了webpack任务。

desc "Compile assets with webpack" 
    task :webpack do 
    # => prefix commands with /tmp/amplo/nvm-exec.sh on AWS servers 
    # => http://stackoverflow.com/questions/41174807/capistrano-deploy-fails-with-react-on-rails-when-npm-is-installed-via-nvm 
    nvm_prefix = '/tmp/amplo/nvm-exec.sh' if File.exist?('/tmp/amplo/nvm-exec.sh') 
    sh "cd client && #{nvm_prefix} npm install" 
    sh "cd client && #{nvm_prefix} npm run build:client" 
    sh "cd client && #{nvm_prefix} npm run build:server" 
    end 

assets.rake文件包括在我的应用程序之前,但后来的版本react_on_rails都不该文件会自动复制到的lib \任务