4
4
" description " : " Run Plone"
5
5
" property=og:description " : " Run Plone"
6
6
" 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 "
8
8
---
9
9
10
10
(run-plone-label)=
@@ -17,24 +17,25 @@ There are different commands to run Plone, depending on which method you used to
17
17
18
18
## Run Plone in foreground mode
19
19
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.
21
22
22
- with Cookieplone:
23
+ Cookieplone:
23
24
: ```shell
24
25
make backend-start
25
26
```
26
27
27
- with Buildout:
28
+ Buildout:
28
29
: ```shell
29
30
bin/instance fg
30
31
```
31
32
32
- with pip:
33
+ pip:
33
34
: ```shell
34
35
bin/runwsgi instance/etc/zope.ini
35
36
```
36
37
37
- with ` cookiecutter-plone-starter ` :
38
+ ` cookiecutter-plone-starter ` :
38
39
: ```shell
39
40
make start-backend
40
41
```
@@ -44,14 +45,14 @@ For any of these commands, press {kbd}`ctrl-c` to stop the process.
44
45
45
46
## Run Volto
46
47
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 .
48
49
49
- with Cookieplone:
50
+ Cookieplone:
50
51
: ```shell
51
52
make frontend-start
52
53
```
53
54
54
- with ` cookiecutter-plone-starter ` :
55
+ ` cookiecutter-plone-starter ` :
55
56
: ```shell
56
57
make start-frontend
57
58
```
@@ -61,14 +62,14 @@ For any of these commands, press {kbd}`ctrl-c` to stop the process.
61
62
62
63
## Start Plone as a background service
63
64
64
- with Buildout:
65
+ Buildout:
65
66
: ```shell
66
67
bin/instance start
67
68
```
68
69
69
70
## Stop Plone as a background service
70
71
71
- with Buildout:
72
+ Buildout:
72
73
: ```shell
73
74
bin/instance stop
74
75
```
@@ -78,22 +79,22 @@ with Buildout:
78
79
The debug console gives you a Python prompt with the Plone site's configuration loaded.
79
80
Use this for troubleshooting.
80
81
81
- with Cookieplone:
82
+ Cookieplone:
82
83
: ```shell
83
84
make -C backend console
84
85
```
85
86
86
- with Buildout:
87
+ Buildout:
87
88
: ```shell
88
89
bin/instance debug
89
90
```
90
91
91
- with pip:
92
+ pip:
92
93
: ```shell
93
94
bin/zconsole debug instance/etc/zope.ini
94
95
```
95
96
96
- with ` cookiecutter-plone-starter ` :
97
+ ` cookiecutter-plone-starter ` :
97
98
: ```shell
98
99
make -C backend debug
99
100
```
0 commit comments