Skip to content
Snippets Groups Projects
Ole Langbehn's avatar
Ole Langbehn authored
Merge branch 'renovate/europe-north1-docker.pkg.dev-holi-shared-docker-hub-remote-docker-28.x' into 'main'

chore(deps): update europe-north1-docker.pkg.dev/holi-shared/docker-hub-remote/docker docker tag to v28

See merge request app/holi-chat-server!24
7b7df2a3
History

Holi Chat Server

Holi Chat Server is a Matrix Synapse chat server application that allows holi users to communicate with each other in real-time.

Installation:

To run Holi Chat Server locally, follow these steps:

  1. Clone the repository.
  2. Navigate to the project directory using a terminal or command prompt.
  3. Fill your .envrc.local and .envrc-push-gateway.local file with secrets from passbolt
  4. Create the file data-push-gateway/apns_keyfile_staging.p8 and fill it with the "APNS_KEYFILE_STAGING" secret from Passbolt. Manually format it so that it looks like a ssh key.
  5. Create the file data-push-gateway/fcm_keyfile.json and fill it with the "FCM Keyfile" secret from Passbolt.
  6. Run the configuration scripts by running the following command:
./generate-homeserver-config.sh
./generate-push-gateway-config.sh

This will generate a default configuration file for your server.

  1. Add local.chat.holi.social entry to your /etc/hosts file as follows:
127.0.0.1 local.chat.holi.social
  1. Authenticate Docker with our Gitlab Container Registry to be able to pull our custom sygnal image You will need to create a personalized gitlab access token with read_registry rights

docker login gitlab.holi.team:5050
  1. Start the server by running the following command:
docker compose up -d

This will start the server in the background and you can access the application by navigating to http://local.chat.holi.social:8008 in your web browser.

  1. Execute the create-synapse-admin-user.sh command with URL http://127.0.0.1:8008 and secret set in .envrc.local HOLI_CHAT_REGISTRATION_SHARED_SECRET for holi-chat-integration to work properly.

  2. Starting an element client

You can run a local element web client like this:

docker run -p 81:80 vectorim/element-web

Since the chat server does use a self signed SSL certificate, you first need to open localhost:8448 and trust the cert. You can then open localhost:81 in your browser and change the server you want to connect to to local.chat.holi.social.