Skip to content

Commit 2a65a79

Browse files
authored
Simplify MyST markup, convert inline literals to use code blocks with a syntax highlighter language
1 parent b3fd198 commit 2a65a79

File tree

1 file changed

+27
-17
lines changed

1 file changed

+27
-17
lines changed

docs/developer-guide/create-control-panel.md

Lines changed: 27 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -226,34 +226,44 @@ To manually register a view as a control panel, add the following registration t
226226

227227
After you perform the above steps for the manual process, you must restart the Plone site. To stop a running Plone instance, press {kbd}`ctrl-c` in the terminal where Plone is running. To start it again, use the appropriate command based on your installation method:
228228

229-
````{tab-set}
229+
`````{tab-set}
230230
231-
```{tab-item} Buildout
232-
To start a Plone instance installed with Buildout:
233-
`bin/instance fg`
231+
````{tab-item} buildout
232+
```shell
233+
bin/instance fg
234234
```
235+
````
235236
236-
```{tab-item} Pip
237-
To start a Plone instance installed with Pip:
238-
`bin/runwsgi -v instance/etc/zope.ini`
237+
````{tab-item} pip
238+
```shell
239+
bin/runwsgi -v instance/etc/zope.ini
239240
```
241+
````
240242
241-
```{tab-item} Cookiecutter (Backend only)
242-
To start a Plone backend instance created with the Cookiecutter template:
243-
`make backend-start`
243+
````{tab-item} Cookieplone
244+
For a backend add-on only, use the following command.
245+
246+
```shell
247+
make backend-start
244248
```
245249
246-
```{tab-item} Cookiecutter (Full stack)
247-
For a full stack setup with both backend and frontend:
250+
For both a backend and frontend add-on project, open two separate terminal sessions.
251+
252+
In the first session, start the backend.
248253
249-
1. Start the backend in one terminal:
250-
`make backend-start`
251-
2. Start the frontend in another terminal:
252-
`make frontend-start`
254+
```shell
255+
make backend-start
253256
```
254257
258+
In the second session, start the frontent.
259+
260+
```shell
261+
make frontend-start
262+
```
255263
````
256264
265+
`````
266+
257267
Your control panel should now appear in {guilabel}`Site Setup`.
258268

259269

@@ -426,4 +436,4 @@ You will still need to set up {file}`registry.xml` with default values as descri
426436

427437
```{seealso}
428438
See the chapter {ref}`training:controlpanel-label` from the Mastering Plone 6 Training.
429-
```
439+
```

0 commit comments

Comments
 (0)