diff --git a/doc/DESCRIPTION.md b/doc/DESCRIPTION.md index 85ca980..ccd0c94 100644 --- a/doc/DESCRIPTION.md +++ b/doc/DESCRIPTION.md @@ -11,7 +11,7 @@ It provides a browser-based editor that makes it easy to wire together flows usi ### Override the default settings -From the installation directory, go edit the `/opt/yunohost/nodered/data/settings.user.js`. For example: +From the installation directory, go edit the `__INSTALL_DIR__/data/settings.user.js`. For example: ```js module.exports = (defaultSettings) => ({ @@ -26,4 +26,4 @@ logging: { // replace the default logging option ...defaultSettings.logging, // }); ``` -You can check the default settings Yunohost generates at `/opt/yunohost/nodered/data/settings.js` and find the documentation for configuring Node-RED here: https://nodered.org/docs/user-guide/runtime/configuration +You can check the default settings Yunohost generates at `__INSTALL_DIR__/data/settings.js` and find the documentation for configuring Node-RED here: diff --git a/doc/DESCRIPTION_fr.md b/doc/DESCRIPTION_fr.md index 2811a40..58b34c0 100644 --- a/doc/DESCRIPTION_fr.md +++ b/doc/DESCRIPTION_fr.md @@ -9,10 +9,9 @@ Il propose un éditeur accessible dans le navigateur, qui facilite l'ébauche de - Plus de 225 000 modules disponibles - Fonctions personnalisées en JavaScript - ### Surcharger la configuration par défaut -Depuis le répertoire d'installation, éditer le fichier `/opt/yunohost/nodered/data/settings.user.js`. Par exemple +Depuis le répertoire d'installation, éditer le fichier `__INSTALL_DIR__/data/settings.user.js`. Par exemple ```js module.exports = (defaultSettings) => ({ @@ -29,4 +28,4 @@ module.exports = (defaultSettings) => ({ }); ``` -Vous pouvez consulter les paramètres par défaut générez par Yunohost dans `/opt/yunohost/nodered/data/settings.js` et trouver la documentation pour configurer Node-RED ici: https://nodered.org/docs/user-guide/runtime/configuration +Vous pouvez consulter les paramètres par défaut générez par Yunohost dans `__INSTALL_DIR__/data/settings.js` et trouver la documentation pour configurer Node-RED ici: diff --git a/manifest.toml b/manifest.toml index 2c3c5f1..78cdc82 100644 --- a/manifest.toml +++ b/manifest.toml @@ -23,11 +23,11 @@ fund = "https://openjsf.org" yunohost = ">= 11.1.15" architectures = "all" multi_instance = true -ldap = "?" # FIXME: replace with true, false, or "not_relevant". Not to confuse with the "sso" key : the "ldap" key corresponds to wether or not a user *can* login on the app using its YunoHost credentials. -sso = "?" # FIXME: replace with true, false, or "not_relevant". Not to confuse with the "ldap" key : the "sso" key corresponds to wether or not a user is *automatically logged-in* on the app when logged-in on the YunoHost portal. -disk = "50M" # FIXME: replace with an **estimate** minimum disk requirement. e.g. 20M, 400M, 1G, ... -ram.build = "50M" # FIXME: replace with an **estimate** minimum ram requirement. e.g. 50M, 400M, 1G, ... -ram.runtime = "50M" # FIXME: replace with an **estimate** minimum ram requirement. e.g. 50M, 400M, 1G, ... +ldap = false +sso = false +disk = "50M" +ram.build = "300M" +ram.runtime = "70M" [install] [install.domain]