Skip to content

siddharthgutta/Entree.LegacyServer

Repository files navigation

Entree.Server

Suggested IDE SQL Fiddle

Build Status

http://ec2-52-26-163-35.us-west-2.compute.amazonaws.com:3000/postreceive

EC2

Connect

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

Online-shell

http://ec2-52-11-141-187.us-west-2.compute.amazonaws.com:5000/

  • Username: build
  • Password: build
Useful Commands
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

Setup

# 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

Third Party Libraries/References:

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

MySQL

Recommended to use MySQL Workbench

  • Create a new connection
    • Username: root
    • Password: 123456
  • Use the .pem file

Tests

npm run tests

Webhooks

https://developer.github.com/webhooks/ Securing Webhooks 3rd Party Webhook Tool

About

SMS-based Order Ahead Platform

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages