generator-yellowcake
v0.3.0
Published
Yellowcake is a set of generators for quickly scaffolding .net core apps based on the Plutonium framework
Downloads
208
Maintainers
Readme
generator-yellowcake
Yellowcake is a set of generators for quickly scaffolding .net core 2 apps based on the Plutonium framework
Installation
First, install Yeoman and generator-yellowcake using npm (we assume you have pre-installed node.js).
npm install -g yo
npm install -g generator-yellowcake
Then generate your new project:
yo yellowcake
All generators should be run in the parent directory, not within the desired project.
Available Templates
service
: a starter console app already configured as a service and referencing the Reactor. Simply implement the requiredApplication
methods.web
: a starter asp web app already configured and referencing the Reactor.module
: a NetStandard class library. At least one needed per application. Used to group business logic separately from the runtime framework (service
orweb
). Reference this in your starter app and expose functionality as desired.model
: bootstraps a model. Creates a Repository, basic CRUD features and controllers for exposing those features. Should be created in amodule
.query
: bootstraps a Query for a model. You must have an existing model before running this generator.command
: bootstraps a Command for a model. You must have an existing model before running this generator.