Skip to content

Instantly share code, notes, and snippets.

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