plone / documentation

Plone Documentation
https://docs.plone.org
92 stars 154 forks source link

Backend instructions should explain how to add add-ons #1360

Open Rudd-O opened 1 year ago

Rudd-O commented 1 year ago

Plone Documentation versions affected

Description

The plone-backend container documentation does not explain how to add add-ons except through ADDONS variable, which is explicitly said not to be for production.

Perhaps we should explain this in the docs too. Here is how I do it:

COPY dist/ dist/

RUN echo Installing dist/*.tar.gz >&2 && \
    ./bin/pip -q install dist/*.tar.gz && \
    ./bin/pip check && \
    echo ===Packages installed in the container image=== >&2 && \
    ./bin/pip freeze && \
    echo =/=Packages installed in the container image=/= >&2
stevepiercy commented 1 year ago

Would you please update your report with a reference to the specific documentation in question?

Rudd-O commented 1 year ago

Absolutely, stand by please.

Rudd-O commented 1 year ago

Report updated with hyperlink to the specific document.