Pathologic was missing because of a .git folder inside.
[yaffs-website] / console / chain / sample.yml
1 commands:
2   - command: generate:module
3     options:
4       module: Example module
5       machine-name: example
6       module-path: /modules/custom/
7       description: My example module
8       core: 8.x
9       package: Custom
10       dependencies:
11   - command: generate:controller
12     options:
13       module: example
14       class: HelloWorldController
15       routes:
16         - title: 'Hello World'
17           name: 'example.hello_name'
18           method: hello
19           path: '/example/hello/{name}'
20       services:
21           - entity_field.manager
22           - theme_handler
23           - config.factory
24       test: true
25   - command: generate:form:config
26     options:
27       module: example
28       class: SettingsForm
29       form-id: settings_form
30       inputs:
31         - name: foo_field
32           type: textfield
33           label: 'Foo field'
34           options: ''
35           description: ''
36           maxlength: '64'
37           size: '64'
38           default_value: ''
39           weight: '0'
40           fieldset: ''
41         - name: bar_number
42           type: number
43           label: 'Bar number'
44           options: ''
45           description: ''
46           maxlength: null
47           size: null
48           default_value: ''
49           weight: '0'
50           fieldset: ''
51       path: '/admin/setting/form'
52       menu_link_gen: true
53       menu_link_title: SettingsForm
54       menu_parent: system.admin_config_system
55       menu_link_desc: 'A description for the menu entry'
56   - command: generate:entity:content
57     options:
58       module: example
59       entity-class: Foo
60       entity-name: foo
61       label: Foo
62   - command: generate:entity:config
63     options:
64       module: example
65       entity-class: Bar
66       entity-name: bar
67       label: Bar
68   - command: generate:command
69     options:
70       module: example
71       class: ExampleCommand
72       name: example:command
73       container-aware: false
74   - command: generate:authentication:provider
75     options:
76       module: example
77       class: ExampleAuthenticationProvider
78   - command: generate:plugin:block
79     options:
80       module: example
81       class: ExampleBlock
82       label: Example plugin block
83       plugin-id: example_block
84   - command: generate:plugin:imageeffect
85     options:
86       module: example
87       class: ExampleImageEffect
88       plugin-id: example_image_effect
89       label: Example image effect
90       description: Example image effect
91   - command: generate:plugin:rest:resource
92     options:
93       module: example
94       class: ExampleRestResource
95       plugin-id: example_rest_resource
96       plugin-label: Example Rest Resource
97       plugin-url: example_rest_resource
98       plugin-states:
99         - GET
100         - PUT
101         - POST
102   - command: generate:service
103     options:
104       module: example
105       class: ExampleService
106       name: example.service
107       interface: yes
108   - command: module:install
109     arguments:
110       module: [example]