samhuri.net/bin/bootstrap.sh

14 lines
160 B
Bash
Executable file

#!/bin/sh
# bail on errors
set -e
echo "*** bootstrap samhuri.net"
echo "* bundle install"
bundle install
echo "* npm install"
npm install
echo "*** done"