behind / blucid-console
Extend lucid console commands.
0.1.0
2016-11-20 23:18 UTC
Requires
- symfony/console: ^3.1
- symfony/filesystem: ^3.1
- symfony/finder: ^3.1
- symfony/process: ^3.1
This package is not auto-updated.
Last update: 2024-11-04 13:40:06 UTC
README
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
blucid
cli directly you need to have./vendor/bin
as part of your$PATH
. To do that, put this in your shell profile (~/.bash_profile, ~/.zshrc, ~/bashrc)export PATH="$PATH:./vendor/bin
"
Available Commands
help
Displays help for a commandlist
Lists commands- make
make:model
Create a new resource Controller class in a servicemake:policy
Create a new Feature in a servicemake:request
Create a new Job in a domain
- delete
delete:model
Delete an existing Feature in a servicedelete:policy
Delete an existing Job in a domaindelete:request
Delete 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>