Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Slate demo site branch #51

Draft
wants to merge 9 commits into
base: main
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@ COPY docker/create-constraints.py docker/constraints.cfg docker/requirements.txt
COPY versions.cfg /
RUN pip install -r https://dist.plone.org/release/6.0.10.1/requirements.txt ${PIP_PARAMS} && \
python create-constraints.py constraints.cfg constraints.txt && \
./bin/pip install --ignore-requires-python -r requirements.txt -c constraints.txt ${PIP_PARAMS} && \
find /app/lib -name LC_MESSAGES -exec chown -R plone:plone {} \;
./bin/pip install --ignore-requires-python -r requirements.txt -c constraints.txt ${PIP_PARAMS}
RUN find /app -name LC_MESSAGES -exec chown -R plone:plone {} \;
2 changes: 1 addition & 1 deletion Dockerfile.development
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,4 @@ RUN pip install -r https://dist.plone.org/release/6.0.10.1/requirements.txt ${PI
./bin/pip install mxdev && \
./bin/mxdev -c mx.ini && \
./bin/pip install --ignore-requires-python -r requirements-mxdev.txt ${PIP_PARAMS} && \
find /app/lib -name LC_MESSAGES -exec chown -R plone:plone {} \;
find /app -name LC_MESSAGES -exec chown -R plone:plone {} \;
20 changes: 17 additions & 3 deletions mx.ini
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,23 @@ requirements-in = requirements-development.txt
requirements-out = requirements-mxdev.txt
contraints-out = constraints-mxdev.txt

version-overrides =
plone.restapi == 9.2.0

# custom variables
github = https://github.com

# [design.plone.contenttypes]
# url = ${settings:github}/RedTurtle/design.plone.contenttypes.git
# branch = cekk_check_views
[design.plone.contenttypes]
url = ${settings:github}/RedTurtle/design.plone.contenttypes.git
branch = add_getobjsize_info_in_serializer

[collective.volto.enhancedlinks]
url = ${settings:github}/RegioneER/collective.volto.enhancedlinks

[redturtle.volto]
url = ${settings:github}/RedTurtle/redturtle.volto
branch = remove_image_customization
mode = direct

[collective.volto.gdprcookie]
url = ${settings:github}/collective/collective.volto.gdprcookie.git
Loading