Bipbip.js - Simple deployment tool

Bipbip.js is a simple tool to deploy, based on Node.js.

Installation
$ npm install -g bipbip.js@0.11.*
Getting Started
Run a deployment
$ bipbip <env>
$ bipbip prod
Configuration
bipbip.js takes the deploy.js default file. The file takes a default configuration and supports environments.
The environment called is merged with default environment.
exports.config = {
default: {
},
<env1>: {
},
<env2>: {
}
}
Environment variables
workspace: "/path/to/workspace",
releaseDir: "",
requirements: {
local: [],
remote: []
},
servers: [{
user: "user",
host: "server_to_deploy.io",
to: "/path/to/deploy",
port: 22
}],
repository: {
url: "git@github.com:baptistedonaux/bipbip.js.git",
branch: null,
tag: null,
options: {
submodules: true|false
}
},
commands: {
local: [
],
remote: [
],
postDeploy: [
]
},
ignores: [
],
shared: {
files: [
],
folders: [
]
},
releases: 3
Required values
{
servers: [{
user: "User to connect the remote server",
host: "Server to deploy",
to: "Absolute path where deploy"
}]
}
Default values
{
workspace: require("process").cwd(),
requirements: {
local: [],
remote: []
},
servers: [{
port: 22
}],
repository: {
branch: null,
options: {
submodules: false
},
tag: null,
url: null
},
commands: {
local: [],
remote: [],
postDeploy: []
},
ignores: [],
shared: {
files: [],
folders: []
},
releases: 3
}
Test
$ npm test
Contribute
bipbip.js is a simple project. No specific or complexe features will are developped. For bugs and features, open an issue.