0
votes
0answers
14 views
Your radiant deployment recipe.
Are you using Radiant CMS?
If yes, what is you deployment strategy?
Since lot's of configuration is stored in the database, I need to overwrite db on the server with my development db (with …
1
vote
1answer
36 views
Capistrano: deploy.rb file refactoring
I have following code in my deploy.rb
namespace :app do
desc "copies the configuration frile from ~/shared/config/*.yml to ~/config"
task :copy_config_files,:roles => :app do
run "cp -fv …
0
votes
1answer
23 views
Have Capistrano Insert Password From Prompt Into Environment.rb File
I am using Action Mailer and have my configuration settings for Action Mailer in my environment.rb file. I would like to post my project in a public repository along with an environment.rb file, but I …
7
votes
2answers
146 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 …
0
votes
0answers
12 views
How do I start Thinking Sphinx delayed delta rake task from deploy script?
Hi
I have Thinking Sphinx setup and working however I am having a problem getting the Delayed Job rake tasks to start during deployment.
I have the following task in deploy.rb which appears to …
0
votes
2answers
51 views
deployment problem on Ruby on Rails
Hi
when do the cap deploy for my Ruby on Rails application. i faced the following error.
cap deploy
* executing `deploy'
* executing `deploy:update'
** transaction: start
* executing …
0
votes
3answers
30 views
Capistrano not restarting
Capistrano is deploying cold, deploying updates and uploading the symlink fine. It will not however restart.
I notice that permission is denied on the /script/process/reaper file. I have found a …
1
vote
3answers
76 views
Capistrano custom task fails because “Rails requires RubyGems >= 1.3.2”
My custom capistrano task "app:sample" fails with the following error message:
mnylen ilmo-on-rails $ cap app:sample
* executing `app:sample'
* executing "export RAILS_ENV=production; cd …
0
votes
1answer
31 views
css files not loading after capistrano deploy
Hey Guys,
I have noticed that after I do a deploy via capistrano, the static css files dont seem to be loading, this is true when I specially specify
<%= stylesheet_link_tag 'resume',:cache => …
1
vote
4answers
51 views
How to use a Rails environment variable in Capistrano deploy script?
If I have a constant in my Rails environment.rb, for example...
SOME_CONSTANT = 3
Is it possible to access this in my capistrano deploy.rb somehow? It seems simple but I can't figure out how.
0
votes
1answer
12 views
capistrano error on cached-copy
I am receiving the following error when running a cap deploy:update
failed: "sh -c 'if [ -d /home/deployer/apps/all_bout_texas/shared/cached-copy ]; then cd …
0
votes
2answers
117 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 working locally, but I'm …
0
votes
4answers
68 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 script I could use …
0
votes
1answer
20 views
Capistrano Hates Gemspecs
I'm deploying a rails app on Slicehost using Capistrano. Part of the process of deployment involves rebuilding a gem and installing it.
Deploying the code to the server via git scm works fine, but …
2
votes
1answer
67 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, resources in this case …
