recap
recap copied to clipboard
Simpler and faster capistrano deployment
I actually pushed environment variables to ~/.env, and saw recap generate the .recap-env-export properly. but when running 'cap whatever bootstrap', then ' cap whatever deploy:setup', then 'cap whatever deploy' my...
Does recap have the ability to deploy to for example: sandbox, staging or production (each on it's on server)? If the above is true, does is also have the ability...
I was setting a testing environment on a client's server with recap. It already had an instance working. I made a mistake when using deploy:setup, the deploy_to directory was kept...
After I created my personal account on the server I added my public github keys to /home/me/.ssh/authorized_keys but all recap tasks contiue to prompt me for password which is highly...
When it gets to this particular part of the bootstrap process the following error occurs: ``` * 2014-03-19 10:31:02 executing `bootstrap:user' NotImplementedError: fork is not available on this platform fork...
when running `cap deploy:setup`, I get stuck on the gem install. ``` * executing "sudo -p 'sudo password: ' su - entelo -c 'cd /home/entelo/app && bundle install --gemfile Gemfile...
Capistrano has :on_no_matching_servers which allows you to skip tasks. I've built a tasks that uses `capture_git` which still executes even with that flag on the task. ``` * 2014-02-05 09:13:01...
This was added to capistrano a while ago. This would save time when deploying to worker servers https://github.com/capistrano/capistrano/pull/145
How can I change the `remote_username`? I do not want it to be the same as the username on my local machine. I tried `set :remote_username, 'another_username'` in `Capfile` but...
I've been thinking about this since @lazyatom suggested it. Not sure the best thing to do. I'm pretty sure we shouldn't read the rails config in any way, or do...