ember-blueprints

0.1.2 • Public • Published

Ember Blueprints

Ember blueprints is a command line script for creating ember.js projects with yaml blueprints. It uses ember-cli command line interface to create a project, models, controllers etc.. . This means that ember-cli needs to be installed on your system.

Install

npm install -g ember-blueprints

Example

ember-blueprints -i project.yaml

Usage

ember-blueprints [options]

Options

-i, --input project.yaml (required)

Input file. It needs to be yaml file with specific content.

Yaml file example

config:
    name: "ember-blueprints-demo-app"
tools:
    - ember-cli-coffeescript
    - ember-cli-stylus
    - ember-cli-emblem-hbs-printer
app:
    acceptanceTests:
        - sampleAcceptanceTest
    addapters:
        - application
    adaptersTests:
        - sampleAdapterTest
    components:
        -   name: sample-Component
            options:
                - --pod
    componentTests:
        - additionalSampleComponentTest
    controllerTests:
        - additionalSampleControllerTest
    helpers:
        - sampleHelper
    helperTests:
        - additionalSampleHelperTest
    models:
        -   name: sampleModel
            options:
            - --pod
        - secondSampleModel
        - thirdSampleModel
        - fifthSampleModel
        - sixthSampleModel
        - seventhSampleModel
        - eigthSampleModel
    routes:
        - sampleRouter
    controllers:
        - samleController
    templates:
        - sampleTemplate
        - sampleNextTemplate
    views:
        - sampleView
        - anotherSampleView
 
 

Package Sidebar

Install

npm i ember-blueprints

Weekly Downloads

1

Version

0.1.2

License

none

Last publish

Collaborators

  • jakkor