0
votes
5answers
33 views
Don’t know how to build task ‘gems:install’
hi all
I am deploying my rails app to a linux server and i have some of the rake tasks missing inlcuding rake gems:install and rake db
I am running rails 2.3.4 from GEM.
Does an …
0
votes
2answers
53 views
How to deploy resque workers in production?
The GitHub guys recently released their background processing app which uses Redis:
http://github.com/defunkt/resque
http://github.com/blog/542-introducing-resque
I have it workin …
2
votes
1answer
46 views
Automate deployment of files to Amazon S3?
I have a Rails project that I will be deploying to the spectacularly awesome Heroku.
I would really like to be able to automate pushing my resources to Amazon S3 automatically, re …
0
votes
1answer
96 views
Passenger, Nginx, and Capistrano - Passenger not launching Rails app at all
Essentially, my route is working perfectly, Passenger seems to be loading - all is hunky-dory. Except that nothing Railsy happens. Here's my Nginx log from starting the server to t …
0
votes
1answer
20 views
Connection Failed when Deploying with Capistrano in Snow Leopard
I'm trying to deploy a PHP project using Capistrano. When I try to do a cap deploy, I get an error:
wes:/var/www/nipponpulse [svn:] → cap deploy
* executing `deploy'
** transac …
1
vote
3answers
23 views
Multiple webs on a server using capistrano
Is there any way to configure Capistrano for deploying many webs on a server?
I would like to have a project on port 80 an other project on port 1000 and manage each one with diffe …
2
votes
1answer
32 views
Starting delayed_job at startup
I'm using delayed_job with capistrano and would like a way to start delayed_job on startup of the web application using the 'script/delayed_job start'. This way capistrano can res …
1
vote
2answers
49 views
How can I combine these git commands?
I do the following string of commands for git and my fingers are getting tired of typing them. :)
git add .
git commit -m 'Some message'
git push
cap deploy
How can I combine th …
1
vote
4answers
74 views
How can you check to see if a file exists (on the remote server) in Capistrano?
Like many others I've seen in the Googleverse, I fell victim to the File.exists? trap, which of course checks your local file system, not the server you are deploying to.
I found …
2
votes
2answers
57 views
Using Capistrano to deploy a Rails application to multiple web servers
I'm currently setting up a new production environment for a Rails application which includes multiple, load-balanced application servers (currently only two, but this will increase …
0
votes
1answer
71 views
Capistrano & Git: Needed a single revision
Capistrano and Git worked properly till I moved my site to another server. My first attempt to deploy went wrong because of an SSH-known-hosts related problem.
Even if I managed t …
0
votes
3answers
49 views
Creating crontab via Capistrano instead of using crontab -e
I would like to include cron tasks in my Capistrano deployment files instead of using the following command to manually edit the crontab file:
crontab -e [username]
Is there a sc …
1
vote
4answers
110 views
Deploying rails application to multiple environments
I am getting ready to deploy to a true production environment. When I say true I mean that my current production environment will now be staging because there is other crap on the …
2
votes
2answers
92 views
Using capistrano to deploy from different git branches
I am using capistrano to deploy a RoR application. The codebase is in a git repository, and branching is widely used in development. Capistrano uses deploy.rb file for it's setting …
0
votes
1answer
51 views
Capistrano Deploy Wipes Database?
I've managed to deploy my app to production using Capistrano, but I don't understand how to deal with my database. I'm using subversion and passenger.
When I run cap deploy, the …
