Created
November 19, 2013 23:12
-
-
Save knomedia/7554300 to your computer and use it in GitHub Desktop.
Revisions
-
knomedia created this gist
Nov 19, 2013 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,28 @@ #!/bin/bash git clone [email protected]: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!"