alexferreira / ember-gen

Ember App Generator
37 stars 4 forks source link

Ember Gen Build Status

Features

Dependence

To install the ember-gen is required

NodeJs >= 0.8
npm

Installation

npm install -g ember-gen

Quickstart

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

Server in Development

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

  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:

Build

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

Version Information

Current Version: 0.1.0

Package versions:

License and Copyright

MIT Style License

Copyright © 2013 Alex Ferreira