#!/bin/bash git clone git@github.com:stefanpenner/ember-app-kit.git $1 cd $1 echo "Removing old git files" rm -rf .git echo "Installing grunt-cli and bower" npm install -g grunt-cli npm install -g bower echo "Installing npm dependencies" npm install echo "Installing bower dependencies" bower install echo "Adding loom-ember-generators for eak" npm install loom-generators-ember --save echo "Making new git repo and initial commit" git init git add . git commit -m "Initial $1 app" echo "" echo "$1 should be ready!"