Skip to content

Commit bc07aa7

Browse files
committed
Tidy up run-plone.md, removing "with "s.
Make casing of `ctrl-c` consistent.
1 parent b9e86b0 commit bc07aa7

File tree

2 files changed

+17
-16
lines changed

2 files changed

+17
-16
lines changed

docs/_inc/_create-classic-ui-instance.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,5 +11,5 @@ Enter values in the form, and click the button {guilabel}`Create Plone Site`.
1111

1212
You will be redirected to your new Classic UI Plone site.
1313

14-
To stop the Plone instance in foreground mode, type {kbd}`CTRL-C`.
14+
To stop the Plone instance in foreground mode, type {kbd}`ctrl-c`.
1515

docs/admin-guide/run-plone.md

Lines changed: 16 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ myst:
44
"description": "Run Plone"
55
"property=og:description": "Run Plone"
66
"property=og:title": "Run Plone"
7-
"keywords": "Plone 6, run, start, command"
7+
"keywords": "Plone 6, run, start, command, Cookieplone, Buildout, pip, cookiecutter-plone-starter"
88
---
99

1010
(run-plone-label)=
@@ -17,24 +17,25 @@ There are different commands to run Plone, depending on which method you used to
1717

1818
## Run Plone in foreground mode
1919

20-
Running Plone in foreground mode will show output in the terminal. This is recommended while developing a Plone site.
20+
Running Plone in foreground mode will show output in the terminal.
21+
This is recommended while developing a Plone site.
2122

22-
with Cookieplone:
23+
Cookieplone:
2324
: ```shell
2425
make backend-start
2526
```
2627

27-
with Buildout:
28+
Buildout:
2829
: ```shell
2930
bin/instance fg
3031
```
3132

32-
with pip:
33+
pip:
3334
: ```shell
3435
bin/runwsgi instance/etc/zope.ini
3536
```
3637

37-
with `cookiecutter-plone-starter`:
38+
`cookiecutter-plone-starter`:
3839
: ```shell
3940
make start-backend
4041
```
@@ -44,14 +45,14 @@ For any of these commands, press {kbd}`ctrl-c` to stop the process.
4445

4546
## Run Volto
4647

47-
If you are using the Volto frontend, you need to run the frontend in a separate process.
48+
If you use the Volto frontend, you need to run the frontend in a separate process and terminal session.
4849

49-
with Cookieplone:
50+
Cookieplone:
5051
: ```shell
5152
make frontend-start
5253
```
5354

54-
with `cookiecutter-plone-starter`:
55+
`cookiecutter-plone-starter`:
5556
: ```shell
5657
make start-frontend
5758
```
@@ -61,14 +62,14 @@ For any of these commands, press {kbd}`ctrl-c` to stop the process.
6162

6263
## Start Plone as a background service
6364

64-
with Buildout:
65+
Buildout:
6566
: ```shell
6667
bin/instance start
6768
```
6869

6970
## Stop Plone as a background service
7071

71-
with Buildout:
72+
Buildout:
7273
: ```shell
7374
bin/instance stop
7475
```
@@ -78,22 +79,22 @@ with Buildout:
7879
The debug console gives you a Python prompt with the Plone site's configuration loaded.
7980
Use this for troubleshooting.
8081

81-
with Cookieplone:
82+
Cookieplone:
8283
: ```shell
8384
make -C backend console
8485
```
8586

86-
with Buildout:
87+
Buildout:
8788
: ```shell
8889
bin/instance debug
8990
```
9091

91-
with pip:
92+
pip:
9293
: ```shell
9394
bin/zconsole debug instance/etc/zope.ini
9495
```
9596

96-
with `cookiecutter-plone-starter`:
97+
`cookiecutter-plone-starter`:
9798
: ```shell
9899
make -C backend debug
99100
```

0 commit comments

Comments
 (0)