To install the ember-gen is required
NodeJs >= 0.8
npm
npm install -g ember-gen
ember new demo-app -t bootstrap
cd demo-app
ember generate -s contact title:string email:string age:number
ember build
open demo-app/index.html
# visit #/contacts
The server has a livereload that will observe any changes in the project files and updates the browser automatically.
the command to start the server is:
ember server
to set port use:
ember server -p 4000
Usage: ember [command] [options]
Command-Specific Help
ember [command] --help
Commands:
new [options] creates a new ember application [dir]
build|b [options] compiles templates and builds the app
generate|g [options] generates application files
precompile|p [options] precompile templates from src dir to target dir
Options:
-h, --help output usage information
-V, --version output the version number
options | object name | file |
---|---|---|
--model, -m post |
Post |
models/post.js |
--view, -v post |
PostView |
views/post_view |
--controller, -c post/comments |
PostCommentsController |
controllers/post/comments.js |
--template, -t post/comments |
n/a | templates/post/comments.hbs |
--helper, -h truncate |
helpers/truncate.js |
|
--route, -r post_comment |
PostCommentRoute |
routes/post_comment.js |
--mixin, -m postable |
Postable |
mixins/postable.js |
-mvcrt posts |
Post PostsView PostsController PostsRoute |
models/post.js views/posts_view controllers/posts_controller.js routes/post_route.js templates/posts.hbs |
--scaffold, -s post |
Post PostsView PostsController PostsRoute |
models/post.js views/posts_view controllers/posts_controller.js routes/post_route.js templates/posts.hbs |
Notes:
For any change in the application files should run the following command to compiles templates and builds the app
ember build
You can also use an observer to compile the templates and build the app every change made in the application files
ember build -w
Current Version: 0.1.0
Package versions:
Copyright © 2013 Alex Ferreira