Skip to main content

Logo Loomio

About​

Loomio is a collaborative decision making tool.

Custom config​

Add custom configuration by editing /app/data/env.sh using the File manager.

See this file for a list of supported options.

Restart the app after making any changes.

Registration​

By default, registration is enabled and new users can create groups. You can adjust this using the following variables in /app/data/env.sh:

Bash
export FEATURES_DISABLE_CREATE_USER=1     # users must be invited
export FEATURES_DISABLE_CREATE_GROUP=1 # users cannot create groups
export FEATURES_DISABLE_PUBLIC_GROUPS=1 # disable /explore
export FEATURES_DISABLE_HELP_LINK=1 # disable the help link
export FEATURES_DISABLE_EMAIL_LOGIN=1 # Disable login via email (usually when you have enabled SSO of some kind)

Rails console​

The rails console can be access using the Web Terminal. The redis and database environment variables must be set as below:

Bash
export DATABASE_URL=postgresql://${CLOUDRON_POSTGRESQL_USERNAME}:${CLOUDRON_POSTGRESQL_PASSWORD}@postgresql/${CLOUDRON_POSTGRESQL_DATABASE}
export REDIS_URL=redis://${CLOUDRON_REDIS_HOST}
source /app/data/env.sh
rails console
Example output
Loading production environment (Rails 7.0.7.2)
irb(main):001:0>