Configuration for twake-node

Hi,
The documentation seems to deal with configuration for a non-node twake app.
I was wondering how a twake-node container can be configured and customized (smtp, connectors/plugins, …)?

Thanks

Ok I’ve found that backend/node/config/custom-environment-variables.json contains all env vars that can be set in docker-compose.yaml.

But what about Connectors/Integrations for twake-node ?

Hi ! Connectors are not yet available on the twake-node version, they will be soon. For your information we are in the process of removing PHP completely and connectors are the next in the roadmap. (Jitsi, Tasks, and hooks are in priority)

Ok, thanks.
I managed to run Twake-php with Cassandra with the following changes:

  • docker-compose.yml
services:
  scylladb:
    image: bitnami/cassandra:3.11.11
    environment:
      - CASSANDRA_USER=admin
      - CASSANDRA_PASSWORD=admin
      - CASSANDRA_PASSWORD_SEEDER=yes
    volumes:
      - ./docker-data/scylladb:/bitnami
  • configuration/backend/Parameters.php :
db.is_cassandra = true
  • configuration/backend-node/production.json
"database": {
  ... ,
  "cassandra":{
    ...
    "username": "admin",
    "password": "admin",
  }
}

Hi @romaric, is there any updates on connectors for twake-node?
Thanks :slight_smile: