No commit activity in last 3 years
No release in over 3 years
Capistrano recipes for deploying node apps
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

~> 1.1
~> 1.8.3
~> 3.12

Runtime

 Project Readme

capistrano_node_recipes

Capistrano recipe for deploying node.js apps.

Features

  • Provides cap deploy functionality for your node app
  • Installs node packages (npm install) during deploys, using a shared folder for speed
  • Automatically creates upstart scripts for your node apps
  • Provides tasks for starting (cap node:start) and stopping (cap node:stop) your node app

Usage

First install the gem:

sudo gem install capistrano-node-deploy

or add it to your Gemfile if you have one:

gem "capistrano-node-deploy"

Now add the following to your Capfile

require "capistrano/node-deploy"

Full Capfile Example

require "capistrano/node-deploy"

set :application, "my-node-app-name"
set :repository,  "git@github.com:/loopj/my-node-app-name"
set :user, "deploy"
set :scm, :git
set :deploy_to, "/var/apps/my-app-folder"

role :app, "myserver.com"

Overriding Default Settings

# Set app command to run (defaults to index.js, or your `main` file from `package.json`)
set :app_command, "my_server.coffee"

# Set additional environment variables for the app
set :app_environment, "PORT=8080"

# Set node binary to run (defaults to /usr/bin/node)
set :node_binary, "/usr/bin/coffee"
    
# Set node environment (defaults to production)
set :node_env, "staging"
    
# Set the user to run node as (defaults to deploy)
set :node_user, "james"

# Set the name of the upstart command (defaults to #{application}-#{node_env})
set :upstart_job_name, "myserver"

Contributing to capistrano-node-deploy

  • Check out the latest master to make sure the feature hasn't been implemented or the bug hasn't been fixed yet.
  • Check out the issue tracker to make sure someone already hasn't requested it and/or contributed it.
  • Fork the project.
  • Start a feature/bugfix branch.
  • Commit and push until you are happy with your contribution.
  • Make sure to add tests for it. This is important so I don't break it in a future version unintentionally.
  • Please try not to mess with the Rakefile, version, or history. If you want to have your own version, or is otherwise necessary, that is fine, but please isolate to its own commit so I can cherry-pick around it.

Copyright

Copyright (c) 2012 James Smith. See LICENSE.txt for further details.