Skip to content

Instantly share code, notes, and snippets.

@devinus
Forked from joewest/gist:1602792
Created January 12, 2012 20:19
Show Gist options
  • Save devinus/1602870 to your computer and use it in GitHub Desktop.
Save devinus/1602870 to your computer and use it in GitHub Desktop.
build tools and junk

User interface for ember command

Initialize

Sets up a new project.

$ ember init <project>

Would generate:

./project/
./project/app/
./project/app/css/
./project/app/templates/
./project/app/main.js
./project/lib/
./project/lib/vendor/
./project/lib/vendor/jquery.js
./project/lib/vendor/minispade.js
./project/lib/vendor/ember.js
./project/assets/
./project/tmp/
./project/Assetfile (opt)
./project/config.ru (opt)
./project/index.html

Build

Packages up all the javascripts and css's for deployment.

$ ember build

Preview

Runs a preview server.

$ ember preview
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment