Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save onel0p3z/5989511 to your computer and use it in GitHub Desktop.
Save onel0p3z/5989511 to your computer and use it in GitHub Desktop.
Simple instructions for deploying an application to Nodejitsu
sudo npm install -g jitsu
jitsu login
vim package.json
{
"name": "CHANGE_ME",
"subdomain": "CHANGE_ME",
"description": "CHANGE_ME",
"version": "0.0.0",
"dependencies": { "CHANGE_ME": "*" },
"scripts": {
"start": "node CHANGE_ME.js"
},
"engines": {
"node": "0.8.x"
}
}
jitsu deploy
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment