Releases: ColdBox/coldbox-cli
Releases · ColdBox/coldbox-cli
1.0.0
Added
- Migration from CommandBox core to a separate module
- Updated all templates to ColdBox 7
- Updated all
resourcesto ColdBox 7 standard code - Add
--forcecommand to several commands for overwriting files - Create app new argument:
migrationsto init the migrations on the project:coldbox create app name="myApp" --migrations create viewcommand now has anopenattribute to open the created views in the editor- You can create layouts with content now:
create layout name="myLayout" content="my content" - You can create views with content now:
create view name="myView" content="my content" - You can create resourceful handlers:
create handler name="myHandler" --resource - You can create resourceful rest handlers:
create handler name="myHandler" --resource --rest - You can create models with migrations now:
create model name="myModel" --migration - You can create models with seeders now:
create model name="myModel" --seeder - You can create models with handlers (normal or rest) now:
create model name="myModel" --handlerorcreate model name="myModel" --handler --rest - You can create models with a resource handler now:
create model name="myModel" --resource - You can create models will all the things now:
create model name="myModel" --all - New
coldbox docscommand to open the ColdBox docs in your browser and search as well:coldbox docs search="event handlers" - New
coldbox apidocscommand to open the ColdBox API Docs in your browser.
Fixed
- Was resetting the
scriptsin the templates, which is not needed
Removed
- Eclipse support