# HG changeset patch # User Goffi # Date 1702501225 -3600 # Node ID 22cd3094cd1e6de81f896bb3ce1aaa82e8a0ec87 # Parent 3dbaf179c50dae0214d8511c55798306d5b1349a docker (demo): fix starting + better UX: - Use the new `wait_for_service` option to be sure that Prosody is launched. - Use the new `init_script_path` option to initiate forums and bookmark a demo room. - Activate MUC service. - Change log formats to make them more readable. diff -r 3dbaf179c50d -r 22cd3094cd1e docker/backend-dev-demo/Dockerfile --- a/docker/backend-dev-demo/Dockerfile Wed Dec 13 22:00:25 2023 +0100 +++ b/docker/backend-dev-demo/Dockerfile Wed Dec 13 22:00:25 2023 +0100 @@ -22,10 +22,11 @@ RUN ./entrypoint.sh \ # and a demo account libervia-cli profile create demo -j demo@server1.test -p "demo" && \ - # we create a bookmark to have something to test in chat - libervia-cli bookmarks add -pdemo -a demo@server1.test\ libervia-backend stop +COPY --chown=libervia:libervia forums.json /home/libervia/ +COPY --chown=libervia:libervia scripts/init_script.sh /home/libervia/ + USER libervia # HTTP Upload EXPOSE 7777 diff -r 3dbaf179c50d -r 22cd3094cd1e docker/backend-dev-demo/forums.json --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/docker/backend-dev-demo/forums.json Wed Dec 13 22:00:25 2023 +0100 @@ -0,0 +1,38 @@ +[ + { + "main-language": "en", + "name": "Libervia", + "title": "Libervia", + "short-desc": "Forums about Libervia demo", + "sub-forums": [ + { + "uri": "", + "title": "tools and features", + "short-desc": "Discussions about Libervia frontends, tools, features, or changes" + }, + { + "uri": "", + "title": "questions and help", + "short-desc": "Mutual assistance for installation or using Libervia and its ecosystem" + } + ], + "desc": "Those are example forums." + }, + { + "main-language": "en", + "title": "XMPP and associated", + "sub-forums": [ + { + "uri": "", + "title": "XMPP software", + "short-desc": "Topics about XMPP software other than Libervia" + }, + { + "uri": "", + "title": "outside XMPP", + "short-desc": "You can discuss or present here protocols or software similar to XMPP" + } + ], + "desc": "Forums about XMPP in general, or similar protocols" + } +] diff -r 3dbaf179c50d -r 22cd3094cd1e docker/backend-dev-demo/libervia.conf --- a/docker/backend-dev-demo/libervia.conf Wed Dec 13 22:00:25 2023 +0100 +++ b/docker/backend-dev-demo/libervia.conf Wed Dec 13 22:00:25 2023 +0100 @@ -1,4 +1,7 @@ [DEFAULT] +log_fmt = [%%(name)s] %%(message)s +init_wait_for_service=prosody:5222::Prosody +init_script_path=/home/libervia/init_script.sh xmpp_domain = server1.test email_server = libervia-backend.test email_port = 8025 diff -r 3dbaf179c50d -r 22cd3094cd1e docker/backend-dev-demo/scripts/init_script.sh --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/docker/backend-dev-demo/scripts/init_script.sh Wed Dec 13 22:00:25 2023 +0100 @@ -0,0 +1,17 @@ +#!/bin/bash + +SETUP_INDICATOR="/home/libervia/.local/share/libervia/setup_complete.flag" +FORUMS_JSON_FILE="/home/libervia/forums.json" + +if [ ! -f "$SETUP_INDICATOR" ]; then + echo "First run detected. Setting up the environment and configuration." + + libervia-cli profile modify -D -cp demo --pwd demo + libervia-cli forums set -p demo < $FORUMS_JSON_FILE + libervia-cli bookmarks add -pdemo -a demo@chat.server1.test + + touch "$SETUP_INDICATOR" + echo "Initial setup complete." +else + echo "Not the first run. Skipping setup." +fi diff -r 3dbaf179c50d -r 22cd3094cd1e docker/backend-dev/libervia.conf --- a/docker/backend-dev/libervia.conf Wed Dec 13 22:00:25 2023 +0100 +++ b/docker/backend-dev/libervia.conf Wed Dec 13 22:00:25 2023 +0100 @@ -1,2 +1,3 @@ [DEFAULT] +log_fmt = [%%(name)s] %%(message)s media_dir = /src/libervia-media diff -r 3dbaf179c50d -r 22cd3094cd1e docker/prosody-e2e/prosody.cfg.lua --- a/docker/prosody-e2e/prosody.cfg.lua Wed Dec 13 22:00:25 2023 +0100 +++ b/docker/prosody-e2e/prosody.cfg.lua Wed Dec 13 22:00:25 2023 +0100 @@ -109,11 +109,11 @@ VirtualHost "server3.test" --- Component "muc.server1.test" "muc" --- modules_enabled = { --- "muc_mam"; --- "vcard"; --- } +Component "chat.server1.test" "muc" + modules_enabled = { + "muc_mam"; + "vcard"; + } Component "pubsub.server1.test" component_secret = "test_e2e"