behind/blucid-console
Extend lucid console commands.
23
| Install | |
|---|---|
composer require behind/blucid-console |
|
| Latest Version: | 0.1.0 |
| License: | MIT |
| Last Updated: | Nov 21, 2016 |
| Links: | GitHub · Packagist |
Maintainer: behind.design
BLucid • Console
Expanding Lucid console capabilities for Lucid Architecture.
Command Line Interface
The console ships with a command line interface called blucid that you can find in vendor/bin/blucid and use as
blucid make:model Video
blucid make:policy Post
blucid make:request UpdatePost
To be able to address the
blucidcli directly you need to have./vendor/binas part of your$PATH. To do that, put this in your shell profile (~/.bash_profile, ~/.zshrc, ~/bashrc)export PATH="$PATH:./vendor/bin"
Available Commands
helpDisplays help for a commandlistLists commands- make
make:modelCreate a new resource Controller class in a servicemake:policyCreate a new Feature in a servicemake:requestCreate a new Job in a domain
- delete
delete:modelDelete an existing Feature in a servicedelete:policyDelete an existing Job in a domaindelete:requestDelete an existing Service
Commands Usage
Make
make:model <model>make:policy <policy>make:request <request>
Delete
delete:model <model>delete:policy <policy>delete:request <request>