-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathbootstrap.sh
executable file
·59 lines (46 loc) · 991 Bytes
/
bootstrap.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
#!/usr/bin/env bash
set -e
main() {
local name;
if [[ ! -z $1 ]]; then
name=$1
else
printf "Please specify a name for your presentation: "
read -e -r name;
echo ""
fi
[[ -z name ]] && die "The presentation name must not be empty"
msg "Cloning Reveal.js Starter..."
git clone "https://github.com/hschne/reveal.js-starter" "$name" &> /dev/null
cd "$name" && \
rm -rf .git .github && \
rm README.md img/.gitkeep bootstrap.sh
msg "Installing dependencies..."
npm install &> /dev/null
echo ""
success "Presentation sucessfully set up in '$name'! 🚀"
cat <<-EOF
To open it in your browser run:
cd '$name'
npm run serve
EOF
success "Happy presenting!"
}
msg() {
printf "$1\n"
}
success() {
local green="\e[32m"
local clear="\e[0m"
printf "${green}$1${clear}\n"
}
err() {
local red="\e[38;5;9m"
local clear="\e[0m"
printf "${red}$1\n${clear}\n'"
}
die() {
local message=$1
err "$message" && exit 1
}
main "$@"