This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
cd | |
set -eu | |
# Create passphrase-less RSA key pair for SSH. | |
# - 'rsa': protocol version 2 | |
# - 4096: the number of bits in the key to create (for RSA keys, minimum: 768, default: 2048 bits) | |
# - "": passphrase |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
######################################################################## | |
# Setup PostgreSQL+Python 3 client development environment | |
######################################################################## | |
cd | |
set -e | |
echo "Setting up PostgreSQL APT repository..." |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
######################################################################## | |
# Setup PostgreSQL+Python 3 client development environment | |
######################################################################## | |
cd | |
set -e | |
echo "Setting up PostgreSQL APT repository..." |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
set -eu | |
sudo add-apt-repository --yes ppa:fkrull/deadsnakes | |
sudo apt-get update | |
sudo apt-get install --yes python3.5 python3.5-dev |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
set -eu | |
sudo add-apt-repository --yes ppa:webupd8team/java | |
sudo apt-get update | |
sudo apt-get install --yes oracle-java8-installer |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
cd | |
set -eu | |
############################################################################### | |
# updates and locale | |
############################################################################### |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQDF8g90+QmhrpZ+V2hEHubBbvCSEM//X/f+TKwumU1fzkz7E4J56sZuWx+tS4/Px93mXYQZoKUAd93HfzwfDV8eaYT7W7QLVnFg8j+HWrZsL9nigO0ThPJD3oYBG9mqQV0WzHGgHTxTPnQ2UyXHTD+NKLpVAqa7WKkbXA7duMPqCjosUMFDnTZkKDvEUsAHpJF/i6eIdnk2sLose2nZB0dw/o0SYiqk/joUUk9yUzyGeqzIwUdI/XZBtD82+Ae9c6ULxLJF/T0Ps7uciYz2SuOELtbAbyCTSYnRSuLpr/+Ocv4oiRe2IAcG447J/O2s0Wf3UrPsBLk7ATCrNGrmqKW5m2ljCrvtfyIPEzRQFrDOIik7Xm5cMmuHkNsBBiP5sH/ppw+oSYbmfFMR4ZxpYVUFZ3xBc2WUFj/aAXWtJI6B8UwXeaQTDtHmEAg4RyzMv6LvjRPfO7Tc2hp9ebtlxJcPwSwQP0xtp6lb4d2QTGTd2UPX2n123QYso3dQ4VqWNhXWYuz0sqaHOwXvtfaUOzsLIBsudPCNtKr1YAD5tgxCKM7XPxgkSTKR3DYUQN/9AQ/9Wpo+9ITRIYKEXsTxSLeNDmqyncOX2yt9SGGhiCQjb4pdfE1BuNAbNM5vQRZjfnxOggvUUkvv8j80+4Vh+QI4Pnc308w/UjmLRxzDg3KpnQ== [email protected] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
cd | |
set -e | |
# https://pip.pypa.io/en/latest/installing/ | |
wget -q https://bootstrap.pypa.io/get-pip.py | |
sudo python2 get-pip.py |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
cd | |
set -e | |
# http://docs.mongodb.org/v2.6/tutorial/install-mongodb-on-ubuntu/ | |
sudo apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv 7F0CEB10 | |
echo 'deb http://downloads-distro.mongodb.org/repo/ubuntu-upstart dist 10gen' | \ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
cd | |
set -e | |
#################### | |
# parameters | |
#################### |
NewerOlder