Skip to content

Commit 216be98

Browse files
committed
Update "Check out an add-on" section
1 parent fb27d8d commit 216be98

File tree

1 file changed

+10
-6
lines changed

1 file changed

+10
-6
lines changed

docs/install/manage-add-ons-packages.md

Lines changed: 10 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -243,30 +243,34 @@ In your web browser, and assuming you are currently logged in as `admin`, visit
243243

244244
### Check out an add-on
245245

246-
Add the add-on to {file}`requirements.txt`:
246+
Add the add-on in {file}`requirements.txt`:
247247

248248
```
249249
collective.easyform
250250
```
251251

252-
Check out with {file}`mx.ini`:
252+
In {file}`mx.ini`, specify the information to check out the add-on:
253253

254254
```ini
255255
[collective.easyform]
256256
url[email protected]:collective/collective.easyform.git
257257
branch=dev-branch-name
258-
extras = test
258+
extras=test
259259
```
260260

261261
Add it to {file}`instance.yml` to let Zope know that this add-on should be loaded:
262262

263263
```yaml
264264
default_context:
265-
load_zcml:
266-
package_includes: ['collective.easyform']
265+
load_zcml:
266+
package_includes: [
267+
'project_title',
268+
'collective.easyform',
269+
]
267270
```
268271

269-
Apply your changes and restart backend:
272+
Stop the backend with {kbd}`ctrl-c`.
273+
Then apply your changes and start the backend.
270274

271275
```shell
272276
make build-backend

0 commit comments

Comments
 (0)