9
votes
4answers
258 views
“Warm Up Cache” on deployment
I am wondering if anyone has any plugins or capistrano recipes that will "pre-heat" the page cache for a rails app by building all of the page cached html at the time the deployment is made, or …
8
votes
9answers
1k views
What is your preferred php deployment strategy?
I'm beginning a new project in PHP and I'd love to get some feedback from other developers on their preferred strategy for PHP deployment. I'd love to automate things a bit so that once changes are …
7
votes
2answers
131 views
Is there a Perl or Lua alternative to Capistrano?
For a number of web-applications I need something like Capistrano to automate deployment. I know Capistrano can be used to deploy non-ruby applications but I'm not familiar with Ruby, so I expect …
6
votes
3answers
1k views
Deny access to .svn folders on Apache
We have a rails application in subversion that we deploy with Capistrano but have noticed that we can access the files in '/.svn', which presents a security concern.
I wanted to know what the best …
6
votes
4answers
1k views
What’s the best way to deploy a JRuby on Rails application to Tomcat?
I'm looking at ways to deploy a Ruby on Rails app (running on JRuby) to a Tomcat instance for testing.
The tomcat instance is running on a Solaris server that I can SSH to. I've looked at using …
6
votes
3answers
553 views
How to do a rolling restart of a cluster of mongrels
Anybody know a nice way to restart a mongrel cluster via capistrano in a "rolling" style, eg, one mongrel at a time. Would be great to have a bit of wait time in there as well for each, to let the …
5
votes
3answers
1k views
How do I run a rake task from Capistrano?
I already have a deploy.rb that can deploy my app on my production server.
My app contains a custom rake task (a .rake file in the lib/tasks directory).
I'd like to create a cap task that will …
4
votes
4answers
277 views
git archive vs cp -R
If I have a clone of a git repository as a cached copy on a remote server for capistrano/vlad style deployment, is it better to do
A) git archive --format=tar origin/master | (cd #{destination} …
4
votes
2answers
735 views
Using Capistrano to deploy (a non-Rails site) via FTP?
How would I go about this?
I have a mostly static site, which is being hosted on a cheap web-host, which only allows FTP access to the hosting. The site is tracked in git. I am using OS X.
I would …
4
votes
5answers
787 views
Capistrano not restarting Mongrel clusters properly
I have a cluster of three mongrels running under nginx, and I deploy the app using Capistrano 2.4.3. When I "cap deploy" when there is a running system, the behavior is:
The app is deployed. The …
3
votes
1answer
90 views
Why keep a copy of an app on the DB host?
A lot of Capistrano example recipes include a :db role. By default the deploy task exports the app code to all hosts in all roles. So that suggests that it's typical for people to keep a copy of their …
3
votes
2answers
185 views
How is Capistrano related to Rake?
I'm starting to read up on Capistrano after using Rake tasks to deploy apps for a long time. It's really striking how similar it is to Rake. A lot of parallel commands (like cap -T) and a lot of …
3
votes
2answers
236 views
What is the current standard way to deploy a Rails app?
Up until now I've been deploying Rails apps to our Apache/Passenger setup using a simple Rake task that I wrote. I haven't tried to mess around with Capistrano or Vlad the Deployer.
However, now more …
3
votes
3answers
390 views
Multi-stage deployment advice?
What are some best practices and general theory of multi-stage deployment for web apps?
I'm particularly interested in deploying Rails apps using Git, Capistrano, and Passenger, and I've found posts …
3
votes
3answers
435 views
How can I clear memcache using capistrano?
I use capistrano to deploy my app to a machine that uses memcache. I want capistrano to clear memcache when it deploys a new version of the site.
