usefulfiles/scripts/obrand_install.sh

74 lines
1.6 KiB
Bash
Raw Normal View History

2016-04-04 09:28:46 +00:00
#!/bin/bash
2016-04-04 09:56:28 +00:00
NVM="~/.nvm"
DEV="~/dev"
LIVE="~/live"
2016-04-04 09:28:46 +00:00
## Update initial packages
sudo apt-get -y --force-yes update
2016-04-04 09:56:28 +00:00
#sudo apt-get -y --force-yes upgrade
2016-04-04 09:28:46 +00:00
# install apps
sudo apt-get --assume-yes install build-essential git nginx htop screen wget curl
# set up and install swap file
sudo swapon -s
sudo fallocate -l 1G /swapfile
sudo chmod 600 /swapfile
sudo mkswap /swapfile
sudo swapon -s
sudo swapon /swapfile
# setup node and npm
2016-04-04 09:56:28 +00:00
if [ ! -d "$NVM" ]; then
# Will enter here if $DIRECTORY exists, even if it contains spaces
curl -o- https://raw.githubusercontent.com/creationix/nvm/v0.31.0/install.sh | bash
source .bashrc
nvm install v5.7.0
npm install -g gulp bower pm2 npm-check npm-install-missing ember-cli phantomjs
fi
2016-04-04 09:28:46 +00:00
# get source and build
2016-04-04 09:56:28 +00:00
if [ ! -d "$LIVE" ]; then
mkdir ~/live
fi
if [ ! -d "$DEV" ]; then
mkdir ~/dev
fi
2016-04-04 09:42:04 +00:00
cd ~/dev
2016-04-04 09:28:46 +00:00
# Get latest version of Obrand Admin
git clone https://censis.visualstudio.com/DefaultCollection/_git/O-Brand
# Get latest version of Obrand Admin Server
git clone http://gitlab.silvrtree.co.uk/martind2000/obrand-admin-server.git
cd ~/dev/O-Brand
npm install .
npm-install-missing
bower install
ember build --environtment production
cd ~/dev/obrand-admin-server
npm install . && npm-install-missing
cd ~/dev/O-Brand/dist
cp -ra . ~/dev/obrand-admin-server/wwwroot
cd ~/dev/obrand-admin-server
cp -ra . ~/live
# Configure nginx
sudo fuser -k 80/tcp
sudo wget https://dl.dropboxusercontent.com/u/233909/obrand/obrand.nginx -O /etc/nginx/sites-available/obrand && sudo ln -s /etc/nginx/sites-available/obrand /etc/nginx/sites-enabled/obrand
sudo service restart nginx