Skip to content

Instantly share code, notes, and snippets.

View emalherbi-zz's full-sized avatar

Eduardo Malherbi Martins emalherbi-zz

View GitHub Profile
@emalherbi-zz
emalherbi-zz / eb-cli-ubuntu-16-04
Created February 27, 2019 12:44 — forked from navid-taheri/eb-cli-ubuntu-16-04
How to install eb cli (awsebcli) on Ubuntu 16.04
sudo apt-get update
sudo apt-get -y upgrade
sudo apt-get install python3-setuptools
sudo easy_install3 pip
pip -V
#pip 9.0.1 from /usr/local/lib/python3.5/dist-packages/pip-9.0.1-py3.5.egg (python 3.5)
sudo chown -R username:username ~/.local/
# add to ./*shrc
@emalherbi-zz
emalherbi-zz / build-and-deploy.sh
Created June 28, 2017 14:12 — forked from jrschumacher/build-and-deploy.sh
Ionic Automated Build and Deploy to HockeyApp
#!/bin/bash
PROJECT_NAME=MyApp
SCHEME_NAME=MyApp
STARTTIME=$(date +%s);
set -e
set -x
### Install dependencies
echo "--- Install dependencies [Time Elapsed $(($(date +%s) - $STARTTIME))s]"