0.3.0 • Published 6 years ago

generator-meteor-boilerplate v0.3.0

Weekly downloads
10
License
-
Repository
-
Last release
6 years ago

Meteor Boilerplate Generator

Description

This generator will generate code for the Meteor Boilerplate. The boilerplate is a very simple CMS, created and structured as instructed by Meteor.

Current Meteor version

The used Meteor version is 1.6.

Install

  • You need npm and node for this. Easy install via NVM, https://github.com/creationix/nvm
  • You need Yeoman for this. Installing via npm install -g yo
  • To use this generator locally, you can just clone this into your local filesystem and use npm link

Documentation

yo meteor-boilerplate

This will create a fresh meteor boilerplate project.

yo meteor-boilerplate:addbackendmodule

Adds a backend module. This is a combination of addcollection, definebackendmodule and addbackendoverview.

yo meteor-boilerplate:addbackendoverview name

This will add an overview for a collection. An overview that can also add/update/remove an object in the collection.

  • name: The name of the collection to add an overview for.
  • route: The route to the overview.

yo meteor-boilerplate:addcollection name

This will add a meteor collection to the boilerplate.

  • name: The name of the collection.

yo meteor-boilerplate:addfrontendpage name

This will add a page in the frontend.

  • name: The name of the page.
  • route: The route to the page.

yo meteor-boilerplate:definebackendmodule name

This will define a module in the Modules collection and adds a link in the backend sidebar.

  • name: The name of the module.