1
vote
2answers
48 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 …
2
votes
2answers
40 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 …
1
vote
4answers
39 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 …
0
votes
3answers
37 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 …
0
votes
1answer
52 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 …
1
vote
4answers
90 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 …
0
votes
1answer
42 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 …
2
votes
3answers
86 views
Is there good deployment and administration for Java environments?
We already have a good build server in Hudson but we want something that would let us startup and shutdown servers, push out new deployments of software (which is much more involve …
2
votes
5answers
172 views
Reading the first line of a file in Ruby
I want to read only the first line of a file using Ruby in the fastest, simplest, most idiomatic way possible. What's the best approach?
(Specifically: I want to read the git comm …
0
votes
2answers
44 views
Deploying with Capistrano & Subversion. Working copy locked
I'm deploying to a Debian server with Capistrano which fails due to locked a working copy. I narrowed it down to this:
svn checkout http://myrepo.net/mysite/tags/1.0 /var/www/mysi …
0
votes
1answer
28 views
How do you add some steps to a capistrano task?
I'd like to stop some processes before running the deploy:migrate task. I know that I can redefine the deploy:migrate task by copying the existing code and adding the stop/start s …
1
vote
2answers
105 views
deploying with capistrano with remote git repo but without git running on production server
I have a remote git repository setup for centralized development within my team. However, the production server that we deploy our applications currently does not have git running …
0
votes
1answer
17 views
capistrano not restarting, stopping but update is working
I recently changed machines, and had a few rough spots updating Rails. The server itself stayed as it was. Everything seemed to be fine, but not capistrano. When I make changes and …
0
votes
1answer
46 views
Capistrano :shell example
Hello experts.
I'm currently using Capistrano to deploy my web application which works like a charm.
In my new project I must execute a command from sudo /bin/bash shell.
Is it p …
1
vote
2answers
139 views
db:schema:load vs db:migrate with capistrano
Hi, I have a rails app that I'm moving to another server and I figure I should use db:schema:load to create the mysql database because it's recommended. My problem is that I'm usi …
