1
0
mirror of https://github.com/LaCasemate/fab-manager.git synced 2024-11-29 10:24:20 +01:00
fab-manager/provision/box_setup.zsh

218 lines
6.8 KiB
Bash
Raw Normal View History

#!/usr/bin/env zsh
###
# Set user configuration
set_user_config() {
echo "Setting ´vagrant´ user profile configuration"
# Virtual environment flag
echo -e '\n\n# Set virtual environment flag' >> ~/.profile
echo -e 'export VIRTUAL_DEV_ENV=true\n' >> ~/.profile
# Language configuration
echo -e '\n# Set locale configuration' >> ~/.profile
echo 'export LC_ALL=en_US.UTF-8' >> ~/.profile
echo 'export LANG=en_US.UTF-8' >> ~/.profile
echo -e 'export LANGUAGE=en_US.UTF-8\n' >> ~/.profile
# Switch to project path after login
echo -e '\n# Navigate to /vagrant after login' >> ~/.profile
echo -e 'cd /vagrant\n' >> ~/.profile
}
###
# Install and configure PostgreSQL database manager
install_postgres() {
echo "Installing PostgreSQL"
sudo apt-get update
sudo apt-get install -y postgresql postgresql-contrib
# Set up ubuntu user for Postgres
sudo -u postgres bash -c "psql -c \"CREATE USER ubuntu WITH PASSWORD 'ubuntu';\""
sudo -u postgres bash -c "psql -c \"ALTER USER ubuntu WITH SUPERUSER;\""
# Make available useful extensions to the schemas
sudo -u postgres bash -c "psql -c \"CREATE EXTENSION unaccent SCHEMA pg_catalog;\""
sudo -u postgres bash -c "psql -c \"CREATE EXTENSION pg_trgm SCHEMA pg_catalog;\""
# Start service
sudo service postgresql start
# Replace default database user in the app database configuration
sed -i 's@username: postgres@username: ubuntu@g' /vagrant/config/database.yml
sed -i 's@password: postgres@password: ubuntu@g' /vagrant/config/database.yml
}
###
# Install Redis data store
install_redis() {
echo "Installing Redis"
sudo apt-get install -y redis-server
}
###
# Install Imagemagick image manipulation utilities
install_imagemagick() {
echo "Installing Imagemagick"
sudo apt-get install -y imagemagick
}
###
# Install ElasticSearch search engine
install_elasticsearch() {
echo "Installing Oracle Java 8 and ElasticSearch"
sudo apt-get install -y openjdk-8-jre apt-transport-https
wget -qO - https://artifacts.elastic.co/GPG-KEY-elasticsearch | sudo apt-key add -
echo "deb https://artifacts.elastic.co/packages/5.x/apt stable main" | sudo tee -a /etc/apt/sources.list.d/elastic-5.x.list
sudo apt-get update && sudo apt-get install -y elasticsearch
# This configuration limits ElasticSearch memory use inside the virtual machine
sudo bash -c "echo 'node.master: true' >> /etc/elasticsearch/elasticsearch.yml"
sudo sed -i 's/#bootstrap.memory_lock: true/bootstrap.memory_lock: true/g' /etc/elasticsearch/elasticsearch.yml
sudo sed -i 's/#ES_JAVA_OPTS=/ES_JAVA_OPTS="-Xms256m -Xmx256m"/g' /etc/default/elasticsearch
sudo /bin/systemctl daemon-reload
sudo /bin/systemctl enable elasticsearch.service
# Create pids directory for Sidekick
sudo mkdir -p /vagrant/tmp/pids
}
###
# Install Ngrok secure tunnel manager
install_ngrok() {
echo 'Installing Ngrok'
sudo apt-get install -y unzip
wget https://bin.equinox.io/c/4VmDzA7iaHb/ngrok-stable-linux-amd64.zip
sudo unzip ngrok-stable-linux-amd64.zip -d /usr/local/bin
rm -rf ngrok-stable-linux-amd64.zip
}
###
# Install Node Version Manager
install_nvm() {
echo "Installing NVM"
wget -qO- https://raw.githubusercontent.com/creationix/nvm/v0.33.8/install.sh | bash
echo -e "\n# Node Version Manager" >> ~/.profile
echo 'export NVM_DIR="$HOME/.nvm"' >> ~/.profile
echo '[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh"' >> ~/.profile
echo '[ -s "$NVM_DIR/bash_completion" ] && \. "$NVM_DIR/bash_completion"' >> ~/.profile
echo -e "\n" >> ~/.profile
echo 'autoload -U add-zsh-hook' >> ~/.profile
echo 'load-nvmrc() {' >> ~/.profile
echo ' local node_version="$(nvm version)"' >> ~/.profile
echo ' local nvmrc_path="$(nvm_find_nvmrc)"' >> ~/.profile
echo -e "\n" >> ~/.profile
echo ' if [ -n "$nvmrc_path" ]; then' >> ~/.profile
echo ' local nvmrc_node_version=$(nvm version "$(cat "${nvmrc_path}")")' >> ~/.profile
echo -e "\n" >> ~/.profile
echo ' if [ "$nvmrc_node_version" = "N/A" ]; then' >> ~/.profile
echo ' nvm install' >> ~/.profile
echo ' elif [ "$nvmrc_node_version" != "$node_version" ]; then' >> ~/.profile
echo ' nvm use' >> ~/.profile
echo ' fi' >> ~/.profile
echo ' elif [ "$node_version" != "$(nvm version default)" ]; then' >> ~/.profile
echo ' echo "Reverting to nvm default version"' >> ~/.profile
echo ' nvm use default' >> ~/.profile
echo ' fi' >> ~/.profile
echo '}' >> ~/.profile
echo 'add-zsh-hook chpwd load-nvmrc' >> ~/.profile
echo -e "load-nvmrc\n" >> ~/.profile
export NVM_DIR="$HOME/.nvm"
[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh"
[ -s "$NVM_DIR/bash_completion" ] && \. "$NVM_DIR/bash_completion"
}
###
# Install stable version of Node.js
install_nodejs() {
echo 'Installing Node.js'
nvm install stable
nvm alias default stable
nvm use default
}
###
# Install Yarn package manager
install_yarn() {
curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | sudo apt-key add -
echo "deb https://dl.yarnpkg.com/debian/ stable main" | sudo tee /etc/apt/sources.list.d/yarn.list
sudo apt-get update && sudo apt-get -y install yarn
}
###
# Install Ruby Version Manager
install_rvm() {
echo 'Installing RVM'
gpg --keyserver hkp://keys.gnupg.net --recv-keys 409B6B1796C275462A1703113804BB82D39DC0E3 7D2BAF1CF37B13E2069D6956105BD0E739499BDB
\curl -sSL https://get.rvm.io | bash
source $HOME/.rvm/scripts/rvm
rvm get stable
}
###
# Install Matz Ruby Interpreter
install_ruby() {
echo 'Installing Ruby'
sudo apt-get install -y libxml2-dev libxslt1-dev libpq-dev libidn11-dev
2020-05-18 10:28:30 +02:00
rvm install ruby-2.6.5
rvm use ruby-2.6.5@global
gem update --system --no-doc
gem update --no-doc
2020-05-18 10:28:30 +02:00
rvm use ruby-2.6.5 --default
rvm cleanup all
}
###
# Install Docker
docker()
{
echo "* Setting up Docker... *********************************************** "
sudo apt-get install -y curl \
ntp \
ntpdate \
ca-certificates \
apt-transport-https \
software-properties-common
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -
sudo apt-key fingerprint 0EBFCD88
sudo add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu $(lsb_release -cs) stable"
sudo apt-get update
sudo apt-get install -y docker-ce
sudo usermod -a -G docker $USER
echo "* Setting up Docker Compose ****************************************** "
sudo curl -L https://github.com/docker/compose/releases/download/1.21.2/docker-compose-Linux-x86_64 -o /usr/local/bin/docker-compose
sudo chmod +x /usr/local/bin/docker-compose
}
###
# Remove unused software
clean_up() {
echo "Removing unused software"
sudo apt-get -y autoremove && sudo apt-get autoclean
}
setup() {
set_user_config
install_postgres
install_redis
install_imagemagick
install_elasticsearch
install_ngrok
install_nvm
install_nodejs
install_yarn
install_rvm
install_ruby
clean_up
}
setup "$@"