Featherweight Github/Bitbucket/Contentful Continuous Deployment
Continuously deploy any code from Github/Bitbucket/Contentful to your server.
node-cd is a simple node.js app handling Github's, Bitbucket's and Contentful's post-receive hooks. It can execute any script you want on your server: deployment, testing, etc.
node > 4
See https://github.com/A21z/node-cd/tree/v1.0.0 for node 0.x
git clone https://github.com/A21z/node-cd.git
npm install
wget https://github.com/A21z/node-cd/archive/v2.0.0.tar.gz
tar xf v2.0.0.tar.gz
cd node-cd-2.0.0
npm install
- Edit the
bitbucket.sh
,contentful.sh
orgithub.sh
file to execute whatever you like after your commits (ex: stop server, git pull, start server) - For GitHub: Set your post-receive hook as described here with the url
http://yourserver.com:61440/github
- For Bitbucket: Set your post-receive hook as described here with the url
http://yourserver.com:61440/bitbucket
- For Contentful: Set your webhook in your Settings > Webhooks with the url
http://yourserver.com:61440/contentful
- Add execution permission on scripts
chmod +x bitbucket.sh contentful.sh github.sh
- Run the app
WWW_PORT=61440 node src/index.js