forked from dailybruin/the-stack
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.sh
executable file
·22 lines (18 loc) · 1.44 KB
/
setup.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#!/bin/bash
SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
echo "Installing global dependencies..."
gem install bundler
echo "Installing project dependencies..."
cd $SCRIPT_DIR
bundle
printf "\nInstallation complete! Run development server with the command 'jekyll serve'.\n"
printf "You may also want to check out the documentation in the 'docs' folder.\n\n"
printf "Happy Stacking!\n\n"
cat << LOGO
████████╗██╗ ██╗███████╗ ███████╗████████╗ █████╗ ██████╗██╗ ██╗
╚══██╔══╝██║ ██║██╔════╝ ██╔════╝╚══██╔══╝██╔══██╗██╔════╝██║ ██╔╝
██║ ███████║█████╗ ███████╗ ██║ ███████║██║ █████╔╝
██║ ██╔══██║██╔══╝ ╚════██║ ██║ ██╔══██║██║ ██╔═██╗
██║ ██║ ██║███████╗ ███████║ ██║ ██║ ██║╚██████╗██║ ██╗
╚═╝ ╚═╝ ╚═╝╚══════╝ ╚══════╝ ╚═╝ ╚═╝ ╚═╝ ╚═════╝╚═╝ ╚═╝
LOGO