Created
November 23, 2012 03:05
-
-
Save krainboltgreene/4133842 to your computer and use it in GitHub Desktop.
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 characters
mkdir -p github-client/application/libraries | |
mkdir github-client/application/models | |
mkdir github-client/application/controllers | |
mkdir github-client/application/presenters | |
mkdir github-client/application/templates | |
mkdir -p github-client/scripts/vendor | |
mkdir -p github-client/styles/vendor | |
mkdir github-client/images | |
mkdir github-client/fonts | |
touch github-client/application/application.js | |
touch github-client/application/controllers/controller.js | |
touch github-client/application/models/model.js | |
touch github-client/application/presenters/presenter.js | |
touch github-client/application/templates/template.handlebars | |
touch github-client/styles/core.css | |
touch github-client/scripts/core.js | |
touch github-client/images/.git-keep | |
touch github-client/fonts/.git-keep | |
touch github-client/index.html | |
touch github-client/500.html | |
touch github-client/404.html | |
touch github-client/favicon.ico | |
touch github-client/robots.txt | |
touch github-client/humans.txt | |
curl http://cloud.github.com/downloads/emberjs/ember.js/ember-latest.js -o github-client/application/libraries/ember.js | |
curl http://cloud.github.com/downloads/wycats/handlebars.js/handlebars-1.0.rc.1.js -o github-client/application/libraries/handlebars.js | |
curl http://cloud.github.com/downloads/emberjs/data/ember-data-latest.js -o github-client/application/libraries/ember-data.js | |
curl https://raw.github.com/andrewplummer/Sugar/master/release/1.3.4/sugar-1.3.4-full.development.js -o github-client/application/libraries/sugar.js | |
curl http://twitter.github.com/bootstrap/assets/css/bootstrap.css -o github-client/styles/vendor/bootstrap.css | |
curl http://twitter.github.com/bootstrap/assets/css/bootstrap-responsive.css -o github-client/styles/vendor/bootstrap-responsive.css | |
curl https://raw.github.com/FortAwesome/Font-Awesome/master/css/font-awesome.css -o github-client/styles/vendor/fontawesome.css | |
curl https://raw.github.com/twitter/bootstrap/gh-pages/assets/js/bootstrap.js -o github-client/scripts/vendor/bootstrap.js | |
curl http://modernizr.com/downloads/modernizr-2.5.3.js -o github-client/scripts/vendor/modernizr.js | |
curl http://code.jquery.com/jquery-1.8.3.js -o github-client/scripts/vendor/jquery.js |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment