Skip to content

Generate wizard

In this section we will delect how to generate a new wizard.

Usage

codoo wizard [OPTIONS]

Available options

Option Type Default Description
-n, --name TEXT The name of the wizard, (e.g: Awesome wizard)
-d, --description TEXT The description of the wizard
-A, --action TEXT The name of the action
-a, --addons TEXT The name of the addon, (e.g: codoo_demo)

Note

All the options are mandatory.

Extra options

Option Type Default Description
Do you want to add fields? BOOLEAN False Choose to add a new field or not
Name ? TEXT Type field name
Type ? Field types1 Char Choose a type for the field

Examples

 codoo wizard \
 -n "Awesome wizard" \
 -d "Awesome new wizard generated by codoo cli" \
 -A "Awesome action"
 -a codoo_demo

After learning how to generate a wizard in this section, we will pass to the report generation which it explained the next section.


  1. [Char, Text ,Boolean, Integer, Float, Binary, Image, Html, Date, Datetime] 

Back to top