Displaying 20 results from an estimated 11000 matches similar to: "Deploying Application - Grid Hosting"
2013 Mar 03
1
Deploy with Capistrano. Bundle install freezes indefinetly.
I am fighting with this for 5 days... i''m getting crazy!
Here is my deploy.rb:
require "bundler/capistrano"
require "rvm/capistrano" # Load RVM''s capistrano plugin.
set :rvm_ruby_string, :local # Or whatever env you want it to run
in. ''1.9.3''
set :domain, ''www.xxx.com''
set :application,
2007 Sep 16
8
Rounding up to two decimal places
Hi there
I am going to calculate VAT at one of my websites, and UK VAT is 17.5
%.
So the question is how to round up some value to two decimal points?
I often get values like 6,991..
In php I was using round function
round($price, 2)
is in ruby something similat to PHP''s round function where I could
specify number of decimal places ?
P.
2006 Jun 29
0
Restart/Deploy - Reaper can''t find PID
Hi
I''ve been using Capistrano to deploy my application for around 3
months now, and in the last week or so the reaper part of the
restart/deploy tasks is failing with the following message:
executing task restart
* executing "/home/user/myapp/current/script/process/reaper
--dispatcher=dispatch.fcgi"
servers: ["myapp.com"]
[myapp.com] executing command
**
2006 Nov 04
0
Deployment w/ Subversion
I created a capistrano script and it''s creating the deployment directories
but it''s not copying the code from subversion into the deployment directroy,
...here''s the deploy.db changes I use,
set :application, "myapp"
set :repository, "svn://www.xyz.com/trunk"
role :app, "www.xyz.com"
role :web, "www.xyz.com"
role :db,
2006 Aug 02
1
capistrano+mongrel struggles
Hello,
I am trying to deploy on to OS X Server with capistrano+mongrel+apache2,
etc.
I''m trying to do a "cap cold_deploy" as recommended here:
http://blog.codahale.com/2006/06/19/time-for-a-grown-up-server-rails-mongrel-apache-capistrano-and-you/
I had a devil of a time getting cap to find the mongrel_rails command
(which is in /opt/local/bin) on the server. I set the
2006 Jun 27
3
Capgem 0.1 Released
I''ve put up a first release of Capgem on Rubyforge. It''s available under the
MIT license.
Capgem is an extension to Capistrano which adds a pack task to Capistrano so
you can package up your Rails application as a Gem. This is useful if you
are in an environment where Capistrano''s remote deployment tools aren''t an
option. Capgem currently adds start and stop
2006 Aug 06
1
Deploying from local machine to remote host using capistrano?
Hi,
I would like to deploy a RoR application from my local machine to a remote
host.
Looks like the capistrano assumes that you are using an internet accessible
host for the SVN repository and doesn''t checkout files using file:///!
Did I miss some configuration?
How do other people handle their application deployment from your local
machine?
Thanks for your feedback.
Regards, Hari
2011 Jan 11
1
deploying with capistrano and bundler
I''m deploying via capistrano but when I try and do a bundle install it
asks for my password to install the gems. I give it a password but
oddly enough the password appears on the console in plain text and
when I press enter, nothing happens. I waited for a couple hours and
still nothing happened, so how am I supposed to run bundler with
capistrano?
--
You received this message because
2007 May 20
1
SVN & Capistrano
I have my svn repository set up locally and working properly. I
followed the instructions for local SVN deployment w/ capistrano
(http://blog.wolfman.com/articles/2006/12/06/a-capistrano-scm-module-
for-local-svn-access). I am able to connect to my server, however, it
doesn''t put anything in the releases folder. Why is this?
Also, in deploy.rb I set the repository to:
2006 Aug 13
1
Can''t setup Capistrano. Failed Authentication
I''m trying for the first time to use capistrano and things were going
well until I tried to run ''cap setup''.
This is what I get...
cap setup
loading configuration
/opt/local/lib/ruby/gems/1.8/gems/capistrano-1.1.0/lib/capistrano/recipes/standard.rb
loading configuration ./config/deploy.rb
* executing task setup
* executing "mkdir -p -m 775
2006 Dec 01
2
deploying mongrel with capistrano
I''m wondering if anyone has built a Capistrano task that will deploy mongrel
either standalone or along with a rails app. I''ve been looking at
possibilities for doing this but still new to using both having switched from
using FCGI+Lighty and deploying by hand.
Thanks,
Curtis
2006 Mar 09
1
Capistrano Error undefined method ''local''
I get an error after running Capistrano deploy...
zdennis@silver:~/source/projects/listedpropertiesllc.com$ rake deploy
(in /home/zdennis/source/projects/listedpropertiesllc.com)
loading configuration
/usr/lib/ruby/gems/1.8/gems/capistrano-1.1.0/lib/capistrano/recipes/standard.rb
loading configuration ./config/deploy.rb
* executing task deploy
** transaction: start
* executing
2006 Aug 21
1
Recommended start order when deploying with Capistrano...
When deploying with Capistrano, what''s the recommended start ordering
for BackgrounDRb?
mongrel_stop
backgroundrb_restart
mongrel_start
- or -
mongrel_restart
backgroundrb_restart
- or -
backgroundrb_restart
mongrel_restart
Or does it matter?
Cheers,
Brett
2011 Apr 11
0
Suggestions for a secure rails setup regarding system users, groups and permissions.
Howdy. After much experimentation with Capistrano, my deploy.rb file
seems to be working without problems, but I would like to verify what
is recommended in regard to users, groups and permissions. I run
Rails with Apache, Passenger, ImageMagick, Thinking Sphinx, and of
course, deploy with Capistrano. Quite a bit of detail and text
follow, so thanks for bearing with me.
My system''s
2006 May 04
4
problem setting up mongrel_cluster 0.1.1
I posted this to the rails list before by mistake, and only later realized
that there is a specific mongrel list.
Uff, I got lost. I had mongrel_cluster 0.1working fine, even with capistrano
(my own hack). Then came mongrel_cluster 0.1.1 and I tried to set it up,
but somehow I messed up things and nothing worked anymore. So here is what I
did:
on production machine: (debian linux, rails 1.1)
2006 Oct 25
1
Capistrano, Media Temple and their Grid Servers
Hey Everyone,
According to the comments section in this blog post MediaTemple has
their own capistrano deploy script:
http://blog.vixiom.com/2006/10/12/media-temple-tames-the-beast-new-ruby-on-rails-hosting-service-with-mongrel/
The problem is that this deploy script refers to a file called
''mt-capistrano'' that I can''t find anywhere.
Does anyone have any suggestions
2009 Jul 05
4
Deploying without capistrano, using git pull?
I''m NOT working on an enterprisey big time rails application; just
something for my personal site.
I''ve been deploying via
local> git push origin master
remote> git pull origin
remote> sudo /etc/init.d/httpd restart
Trying to decide if this is sufficient, or if learning capistrano and
setting that up will give me any advantages over this?
Thanks,
Dave
2007 May 21
1
Deploying in subdir w/ Apache and Mongrel
Hi all,
I have been searching for the past 2 or 3 days on how to deploy my
rails apps within subdirectories (ie: http://www.domain.com/myapp or
even domain.com/rails/myapp) and have found a few tutorials, but all
have left something out it seems. I would like to do this rather than
http://myapp.domain.com/ since it will be usd internally and I have no
real direct access to dns to make the
2006 Mar 30
11
Capistrano/SVN: Deploying different database.yml for live?
Greetings,
Today I''ve been working out how to begin using Capistrano and so far I''m
impressed. Even in my situation, learning Rails and deploying to a
single server, it''s incredibly helpful. I do have one small question
though:
In using Subversion I''ve used the "ignore" feature to ignore my local
database.yml file, because my local database and
2006 Mar 31
2
Capistrano, multiple instances of an application
I''ve been meaning to look into using Switchtower/Capistrano for some
time now, and after briefly taking a look, it seems geared towards
deploying ''an application'' perhaps to multiple machines and keeping it
in check in all cases.
I was wanting to use it in some legacy situations where the case is
more that I deploy an instance of an application multiple times,
sometimes