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.

Revisions

  1. knomedia created this gist Nov 19, 2013.
    28 changes: 28 additions & 0 deletions new_eak_app
    Original 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!"