mirror of
https://github.com/codeninjasllc/codecombat.git
synced 2024-11-27 17:45:40 -05:00
65 lines
2 KiB
Bash
65 lines
2 KiB
Bash
#!/bin/bash -e
|
|
# Original content copyright (c) 2014 dpen2000 licensed under the MIT license
|
|
|
|
# some defaults
|
|
NODE_VERSION="5.x" # 0.10 | 0.12 | 4.x | 5.x | 6.x
|
|
|
|
# inform apt that there's no user to answer interactive questions
|
|
export DEBIAN_FRONTEND=noninteractive
|
|
|
|
# Set default ulimits
|
|
cat <<- EOF > /tmp/limits.conf
|
|
* soft nofile 10000
|
|
* hard nofile 10000
|
|
EOF
|
|
sudo mv /tmp/limits.conf /etc/security/limits.conf
|
|
sudo chown root:root /etc/security/limits.conf
|
|
|
|
# install prerequisites
|
|
curl -sL https://deb.nodesource.com/setup_${NODE_VERSION} | sudo -E bash -
|
|
sudo apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv 7F0CEB10
|
|
echo 'deb http://downloads-distro.mongodb.org/repo/ubuntu-upstart dist 10gen' | sudo tee /etc/apt/sources.list.d/mongodb.list
|
|
|
|
echo "updating apt sources..."
|
|
sudo apt-get update
|
|
|
|
echo "installing prerequisites..."
|
|
sudo apt-get -y install --no-install-recommends build-essential git g++ make curl wget python2.7 dos2unix
|
|
|
|
# install node.js
|
|
echo "installing node.js..."
|
|
sudo apt-get -y install nodejs
|
|
npm config set python `which python2.7`
|
|
|
|
echo "upgrading npm..."
|
|
sudo npm install -g npm@latest # upgrade npm
|
|
sudo npm install -g bower
|
|
sudo npm install -g brunch
|
|
sudo npm install -g geoip-lite
|
|
sudo npm install -g nodemon
|
|
|
|
# bind /vagrant/node_modules so that it does not leak through to the host file system
|
|
# which triggers symlink and path size issues on Windows hosts
|
|
mkdir -p /vagrant/node_modules
|
|
sudo mkdir -p /node_modules
|
|
sudo chown -R vagrant:vagrant /node_modules
|
|
sudo mount --bind /node_modules /vagrant/node_modules
|
|
|
|
# prepare
|
|
find /vagrant/app -type f -exec dos2unix {} \;
|
|
find /vagrant/vendor -type f -exec dos2unix {} \;
|
|
find /vagrant/scripts/vagrant -type f -exec dos2unix {} \;
|
|
sudo chown -R vagrant:vagrant /home/vagrant
|
|
|
|
# install npm modules
|
|
echo "installing modules..."
|
|
cd /vagrant
|
|
npm install
|
|
|
|
# install mongo
|
|
echo "installing mongodb..."
|
|
sudo apt-get -y install --no-install-recommends mongodb-org
|
|
|
|
# populate mongo
|
|
echo "populating mongodb..."
|
|
exec /vagrant/scripts/vagrant/core/fillMongo.sh
|