Skip to main content

Home/ Coders/ Group items tagged scm

Rss Feed Group items tagged

Joel Bennett

Subversive - by Polarion - for Eclipse - 0 views

  •  
    Subversive is a GUI SVN client which is written as a plugin to Eclipse. Really *the* choice for SVN support in Eclipse.
Lee Johnson

Deploying node.js on Amazon EC2 | The Carbon Emitter - 0 views

  • sudo apt-get update
  • sudo apt-get upgrade -y
  • sudo apt-get install build-essential libssh-dev git-core -y
  • ...9 more annotations...
  • wget http://nodejs.org/dist/node-v0.4.11.tar.gz
  • tar zxf node-v0.4.11.tar.gz
  • cd node-v0.4.11
  • ./configure
  • sudo make install
  • curl http://npmjs.org/install.sh | sudo sh
  • source 'http://rubygems.org' gem 'capistrano' gem 'capistrano-ext' gem 'bluepill'
  • load 'deploy' if respond_to?(:namespace) # cap2 differentiator load 'config/deploy' # remove this line to skip loading any of the default tasks
  • set :stages, %w(acceptance production) require 'capistrano/ext/multistage' set :application, "node" set :user, "ubuntu" set :host, "ec2-127-0-0-1.compute-1.amazonaws.com" set :deploy_to, "/var/www/node" set :use_sudo, true set :scm, :git
‹ Previous 21 - 24 of 24
Showing 20 items per page