http://ec2-52-26-163-35.us-west-2.compute.amazonaws.com:3000/postreceive
ssh -i <pem> ubuntu@<public-dns>
chmod 400 <path_to_pem_file_in_keys_directory>
ssh -i <path_to_pem_file_in_keys_directory> ubuntu@ec2-52-11-141-187.us-west-2.compute.amazonaws.com
http://ec2-52-11-141-187.us-west-2.compute.amazonaws.com:5000/
pm2 list # see running apps
pm2 monit # watch deployment occur live
pm2 logs # live log viewer
pm2 restart <app_name> # restart specific app/branch
pm2 restart all # restart all apps/branches
pm2 kill # never do this please! conflicts with branch-off atm
htop # activity monitor; press t for accessing sub-processes
cd ~/Github/Entree.Server # root repo directory
cd ~/Github/Entree.Server && npm install # reinstall the modules for the app
npm cache clear # if modules need to be downloaded again
# general env setup
# osx
brew install automake
brew install libtool
brew install libpng
# linux
sudo apt-get update
sudo apt-get -y install git build-essential git ruby libpam0g-dev debconf-utils automake libtool libpng-dev libkrb5-dev sshpass zip unzip
# sass engine
sudo gem install sass
# nvm
wget -qO- https://raw.githubusercontent.com/creationix/nvm/v0.29.0/install.sh | bash
source ~/.bashrc
nvm install 5.7.0
echo "5.7.0" > ~/.nvmrc
# init
cd; cd -
# open ports < 1024 for non-sudo
killall node
sudo setcap 'cap_net_bind_service=+ep' `which node`
# npm global
npm install pm2 -g
npm install eslint@1.10.3 -g
npm install babel-eslint@4.1.8 -g
npm install eslint-config-airbnb@4.0.0 -g
npm install eslint-plugin-markdown@1.0.0-beta.1 -g
npm install eslint-plugin-mocha@1.1.0 -g
npm install eslint-plugin-react@3.16.1 -g
npm install eslint-plugin-babel@3.1.0 -g
npm install mocha -g
npm install grunt-cli -g
npm install sequelize-cli -g
npm install branch-off -g
# pm2
pm2 conf branch-off:port 4000
pm2 conf pm2-webshell:port 5000
pm2 conf pm2-webshell:username build
pm2 conf pm2-webshell:password build
pm2 install branch-off
pm2 install pm2-webshell
# mongo
sudo apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv 7F0CEB10
echo "deb http://repo.mongodb.org/apt/ubuntu "$(lsb_release -sc)"/mongodb-org/3.0 multiverse" | sudo tee /etc/apt/sources.list.d/mongodb-org-3.0.list
sudo apt-get update
sudo apt-get install -y mongodb-org
service mongod status
# mysql
sudo debconf-set-selections <<< 'mysql-server mysql-server/root_password password 123456'
sudo debconf-set-selections <<< 'mysql-server mysql-server/root_password_again password 123456'
sudo apt-get install -y mysql-server
# clone and install - required!
git config --global credential.helper store
mkdir -p Github && cd Github
git clone https://github.com/siddharthgutta/Entree.Server && cd Entree.Server
npm install
# you can delete the folder ~/Github now
# run database init scripts
path: Module for handling/transforming file paths
serve-favicon: Middleware for serving a favicon
morgan: HTTP request logger middleware
cookie-parser: Cookie Parser
body-parser: Body Parser
underscore: Functional Programming JS Helper Library
http: HTTP Interfaces
socket-io: WebSockets for Node.js
branch-off: Git Branch Auto-Deployment (Mathew's Tool)
bluebird: Promises
Recommended to use MySQL Workbench
npm run tests
https://developer.github.com/webhooks/ Securing Webhooks 3rd Party Webhook Tool