Symlink single file via Moonshine and/or Capistrano on production server?

You can do the following in your deploy.rb.

You can do the following in your deploy. Rb: desc "Link the file" task :link_file do run "ln -nfs #{deploy_to}/shared/files/myfile #{release_path}/myfile" end and then add this task to: after "deploy", :link_file Of course you'll need to create /shared/files directory manually, just once.

I had to add the additional path folders to "release_path" as the above made the symlink in the root of my project, but following that, it worked perfectly. Thanks. – Shannon May 13 at 5:22.

I cant really gove you an answer,but what I can give you is a way to a solution, that is you have to find the anglde that you relate to or peaks your interest. A good paper is one that people get drawn into because it reaches them ln some way.As for me WW11 to me, I think of the holocaust and the effect it had on the survivors, their families and those who stood by and did nothing until it was too late.

Related Questions