Deploy Your Apps to Nodejitsu

Konstantin Haase,

![](/images/nodejitsu.png)
Nodejitsu offers simple, reliable and intelligent Node.js hosting

Recently we announced built-in support for deploying to Heroku.

Last week we sat together with our awesome customers and good friends from Nodejitsu and are pleased to announce that we now also offer first class support for continuous deployment to their amazing platform!

All you need to do is add the following to your .travis.yml:

deploy:
  provider: nodejitsu
  user: "YOUR USER NAME"
  api_key: "YOUR API KEY" # can of course be encrypted

But we’ve made it even simpler than that: If you have our command line tool installed, you just use the brand new setup command:

$ travis setup nodejitsu
![](/images/dscape.png)
[Nuno Job](https://github.com/dscape) and [Maciej Małecki](https://github.com/mmalecki) were a great help in implementing this feature

Done!

This feature is immediately available to all our users including our Travis Pro customers.

Conditional deploys

You can make deploys conditional. For instance, if you only want to deploy from the staging branch and only on Node.js 0.11 if it is passing (but you also test on other versions):

deploy:
  provider: nodejitsu
  user: ...
  api_key: ...
  on:
    node: "0.11"
    branch: staging

For more infos, head over to the documentation.

Your Nodejitsu project on Travis CI

If you have a project hosted on Nodejitsu and would love get started on Travis CI for your private projects, email support@travis-ci.com before the 29th of July for a 20% off for three months coupon.

Provider still missing?

You run your application in the cloud and would love to have Travis CI automatically deploy to it, but we don’t support your provider at the moment? Please let us know!

Already using continuous deployment? Tell us about your experience.

Sign up for our newsletter

blog comments powered by Disqus