Skip to content

Instantly share code, notes, and snippets.

@elrumordelaluz
Last active September 18, 2015 15:03
Show Gist options
  • Save elrumordelaluz/0a72ec89230921987276 to your computer and use it in GitHub Desktop.
Save elrumordelaluz/0a72ec89230921987276 to your computer and use it in GitHub Desktop.
Shell script to easily install the Una's `gulp-starter-env` https://github.com/una/gulp-starter-env
#!/bin/bash
# Ask the Project name
def=${PWD##*/}
echo What\'s the name of the Project? \($def\)
read proj
proj=${proj:-$def}
# Ask a description
echo A Project description, please?
read desc
# Ask a repository
echo Git Repository.
read repo
# Ask a author
user=$(whoami)
echo Author name \($user\)
read author
author=${author:-$user}
### Check ###
echo
echo "Check if the information is correct:"
echo "===================================="
echo "Project: $proj"
echo "Description: $desc"
echo "Author: $author"
echo "Git repository: $repo"
echo
read -r -p "Are you sure to continue? [Y/n] " check
echo
check=${check:-y}
case $check in
[yY][eE][sS]|[yY])
;;
*)
exit 1
;;
esac
origin=https://github.com/una/gulp-starter-env.git
### Apply ###
# Copy source files
git clone $origin _install
cp -Rf _install/ .
printf "\ninstall\n_install\n" >> .gitignore
# Description on README
printf "# $proj\n\n$desc\n\nForked from $origin" > README.md
d=$(date +"%Y")
sed "s@2015 Una Kravets@$d $author@" LICENSE > output.txt
mv output.txt LICENSE
# jq
if [ ! -z "$repo" ]; then
bugs=$repo/issues
fi
pack=${proj// /_}
jq 'del(.name,.description,.repository.url,.bugs.url,.homepage,.author,.keywords)' package.json > tmp-package.json
printf '{"name":"%s","description":"%s","repository":{"url":"%s"},"bugs":{"url":"%s"},"homepage":"%s","author":"%s"}\n' "$pack" "$desc" "$repo" "$bugs" "$repo" "$author" > tmp-custom.json
jq -s '.[0] * .[1]' tmp-package.json tmp-custom.json > package.json
rm tmp-package.json tmp-custom.json
# Git init
if [[ ! -z "$repo" ]]; then
read -r -p "Do you want to init the repo? [Y/n] " git
git=${git:-y}
case $git in
[yY][eE][sS]|[yY])
rm -rf .git
git init
git add .
git commit -m "Initial commit"
git remote add origin $repo
git push -u origin master
;;
*)
;;
esac
fi
# npm install
read -r -p "Do you want install the packages? [Y/n] " packs
packs=${packs:-y}
case $packs in
[yY][eE][sS]|[yY])
sudo npm i
;;
*)
;;
esac
# remove installer
read -r -p "Do you want to remove the installer assets? [Y/n] " inst
inst=${inst:-y}
case $inst in
[yY][eE][sS]|[yY])
rm -rf _install
rm install
;;
*)
;;
esac
echo
echo
echo Thank you, enjoy your $proj Project!
echo
@elrumordelaluz
Copy link
Author

gulp-starter-env installer

Why

In the optic of made easier the starter environment for designers in open source, that @una is promotiong and helping with her gulp-starter-env, I am adding this little thing to launch something like an "installer" from the command line.

How

-1. Install jq, the only dependency, if you doesn't have it yet.

  1. Download this file or copy paste on a shell file like install.sh
  2. Allow permission to execute chmod +x install.sh
  3. run ./install.sh and follow the instructions

Dependency

It is necessary to install jq to easily customize package.json

Todos

Just know that the script could improve so much...

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment