Skip to content

Commit d1175d5

Browse files
committed
Add instructions for restarting Plone after manual control panel setup
1 parent 27489e4 commit d1175d5

File tree

1 file changed

+30
-0
lines changed

1 file changed

+30
-0
lines changed

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

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -224,6 +224,36 @@ To manually register a view as a control panel, add the following registration t
224224
</object>
225225
```
226226

227+
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:
228+
229+
````{tab-set}
230+
231+
```{tab-item} Buildout
232+
To start a Plone instance installed with Buildout:
233+
`bin/instance fg`
234+
```
235+
236+
```{tab-item} Pip
237+
To start a Plone instance installed with Pip:
238+
`bin/runwsgi -v instance/etc/zope.ini`
239+
```
240+
241+
```{tab-item} Cookiecutter (Backend only)
242+
To start a Plone backend instance created with the Cookiecutter template:
243+
`make backend-start`
244+
```
245+
246+
```{tab-item} Cookiecutter (Full stack)
247+
For a full stack setup with both backend and frontend:
248+
249+
1. Start the backend in one terminal:
250+
`make backend-start`
251+
2. Start the frontend in another terminal:
252+
`make frontend-start`
253+
```
254+
255+
````
256+
227257
Your control panel should now appear in {guilabel}`Site Setup`.
228258

229259

0 commit comments

Comments
 (0)