Questions tagged [webistrano]

Webistrano is a Web UI for managing Capistrano based deployments (primarily on Ruby on Rails).

Webistrnao lets you define deployment steps and manage assets in "stages" like QA, Staging, Production etc. It enables tracking what, where, who and how an application is deployed.

Since each deployment is managed via an SSH session to the target machine, the only requirement is the ability to ssh to the target machine. No agent is required on the target machine.

25 questions
0
votes
2 answers

Where does webistrano store custom recipes?

I'm trying to figure out where does webistrano keep its custom recipes (I want to copy them), and I can't seem to locate them. I've scoured the installation folder on the server to no avail. Does anyone know where they are kept?
Roni Yaniv
  • 57,651
  • 5
  • 19
  • 16
0
votes
1 answer

Webistrano on Windows

Has anyone had any success in getting Webistrano running on Windows. Everywhere I have read says it wont run on Windows, but isnt that kinda the point of using Ruby?
Ash
  • 24,276
  • 34
  • 107
  • 152
0
votes
1 answer

Rake db:migrate syntax error

trying to setup webistrano and getting the following error: rake db:migrate (in /var/www/html/webistrano) rake aborted! /var/www/html/webistrano/vendor/rails/activesupport/lib/active_support/inflector.rb:273: syntax error, unexpected ':', expecting…
0
votes
1 answer

Assigning a variable based on existence of other variables in ruby 1.9

I got the job to fix a webistrano installation and now I am stuck in the situation where I have a receipt wherein the following assignment broke after the update from ruby 1.8 to ruby 1.9.3 if defined? var_one != nil var_to_be_used = var_one else …
0
votes
2 answers

Webistrano bash/sh problem!

I love Capistrano and finally i found GUI for using it! Webistrano! I installed the app that many other guys recommend it to me. Finally, its time to try... I flow the screencast ..etc.. and found in my production.log this error: 'sh: ruby command…
amrnt
  • 1,331
  • 13
  • 30
0
votes
2 answers

Webistrano - how to clear global HTML cache after deployment

I am new to webistrano so apologies if this is a trivial matter... I am using webistrano to deploy php code to several production servers, this is all working great. My problem is that I need to clear HTML cache on my cache servers (varnish cache)…
0
votes
3 answers

Deploy error in Webistrano with bundler, capistrano and require 'bundler/capistrano' recipe

Recently I've been trying to upgrade Webistrano from a version that did not use bundler to manage the application gems to one that does. In order to deploy rails applications, we would use require 'bundler/capistrano' in the recipe to have the…
achinda99
  • 5,020
  • 4
  • 34
  • 42
0
votes
1 answer

Webistrano stuck on deploy:update_code

I've been trying to set up webistrano on one of our servers. Everything went well, until I tried deploying my set up. Webistrano is currenlty set up to live on the test server, so I want it to deploy to 127.0.0.1 The configuration contains valid…
Kasia Gogolek
  • 3,374
  • 4
  • 33
  • 50
0
votes
1 answer

Webistrano - Phusion Passenger - Could not find rake

I'm having issues running deploy tasks in Webistrano. This only when I run Webistrano from Nginx with Phusion Passenger. When I run Webistano with the following command, everything runs fine. ruby script/server -d -p 3000 -e production But when…
jayv
  • 495
  • 4
  • 13
0
votes
1 answer

Permissions issues with bundler install

I am working on a cap/deploy script for my rails application. On my server, I am using RVM to manage my ruby install. The issue that I am seeing is even though I have set the runner/user/group to the correct user I am getting permissions errors…
rottmanj
  • 531
  • 1
  • 9
  • 21
1
2