Created
November 19, 2013 23:12
-
-
Save knomedia/7554300 to your computer and use it in GitHub Desktop.
shell script for quickly starting a fresh ember-app-kit app.
This file contains 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 characters
#!/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!" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment