We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
On the shared path soft chain does not take effect, only the implementation of these;
----> Symlinking shared paths $ mkdir -p ./vendor $ rm -rf "./vendor/bundle" $ ln -s "/home/deployer/qianfandu_mysql/shared/vendor/bundle" "./vendor/bundle" $ mkdir -p . $ rm -rf "./log" $ ln -s "/home/deployer/qianfandu_mysql/shared/log" "./log" $ mkdir -p ./tmp $ rm -rf "./tmp/cache" $ ln -s "/home/deployer/qianfandu_mysql/shared/tmp/cache" "./tmp/cache" $ mkdir -p ./public $ rm -rf "./public/assets" $ ln -s "/home/deployer/qianfandu_mysql/shared/public/assets" "./public/assets"
My configuration"
set :shared_paths, [ 'log', "tmp", 'public/image', 'public/uploads', 'vendor/bundle', 'public/news', 'public/static', "config/secrets.yml", "config/influxdb.yml", "config/sms.yml", "config/oauth.yml", "config/secrets.yml", "config/kafka.yml", "config/payment.yml", "config/memcached.yml", "config/sidekiq.yml", "config/redis.yml", "config/application.yml", "config/settings/application.yml", "config/database.yml", 'public/uploads', 'public/assets', 'config/newrelicyml', 'config/host.yml']
task :deploy => :environment do deploy do # queue %[ /bin/bash --login ] invoke :'git:clone' invoke :'deploy:link_shared_paths' invoke :'bundle:install' invoke :'rails:db_migrate' invoke :'rails:assets_precompile' invoke :'deploy:cleanup' # invoke :restart end end
The text was updated successfully, but these errors were encountered:
Read the source code I know it is shared_paths changed the name shared_files;
Sorry, something went wrong.
No branches or pull requests
On the shared path soft chain does not take effect, only the implementation of these;
My configuration"
The text was updated successfully, but these errors were encountered: