The app has the size 65MB. When got that the biggest size has the folder /vendor/bundle – almost 63MB.
So the question is – why? How can I reduce it?
I am deploying my app with caipstrano and it takes so much times…
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
I’m sure deploing is a pain when the app has to be uploaded 65MB every time. You should look at the deploy_via remote_cache option in the /config/deploy.rb file
add this to your /config/deploy.rb file
Taken from http://help.github.com/deploy-with-capistrano/
So basically what happens is the first time you deploy your application everything is pulled from the repo, then every deployment thereafter only the change are pulled down.
This also works with subversion.