1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/n8n_ynh.git synced 2024-09-03 19:55:52 +02:00

Merge pull request #12 from YunoHost-Apps/testing

Testing
This commit is contained in:
Florent 2021-12-13 22:21:17 +01:00 committed by GitHub
commit d9e990d778
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 7 additions and 4 deletions

View file

@ -17,7 +17,7 @@ If you don't have YunoHost, please consult [the guide](https://yunohost.org/#/in
n8n is an extendable workflow automation tool. With a fair-code distribution model, n8n will always have visible source code, be available to self-host, and allow you to add your own custom functions, logic and apps. n8n's node-based approach makes it highly versatile, enabling you to connect anything to everything. n8n is an extendable workflow automation tool. With a fair-code distribution model, n8n will always have visible source code, be available to self-host, and allow you to add your own custom functions, logic and apps. n8n's node-based approach makes it highly versatile, enabling you to connect anything to everything.
**Shipped version:** 0.138.0~ynh1 **Shipped version:** 0.153.0~ynh1
**Demo:** https://demo.example.com **Demo:** https://demo.example.com

View file

@ -13,7 +13,7 @@ Si vous n'avez pas YunoHost, regardez [ici](https://yunohost.org/#/install) pour
n8n is an extendable workflow automation tool. With a fair-code distribution model, n8n will always have visible source code, be available to self-host, and allow you to add your own custom functions, logic and apps. n8n's node-based approach makes it highly versatile, enabling you to connect anything to everything. n8n is an extendable workflow automation tool. With a fair-code distribution model, n8n will always have visible source code, be available to self-host, and allow you to add your own custom functions, logic and apps. n8n's node-based approach makes it highly versatile, enabling you to connect anything to everything.
**Version incluse :** 0.138.0~ynh1 **Version incluse :** 0.153.0~ynh1
**Démo :** https://demo.example.com **Démo :** https://demo.example.com

View file

@ -9,6 +9,9 @@ N8N_BASIC_AUTH_PASSWORD=__PASSWORD__
# The path n8n is deployed to. # The path n8n is deployed to.
N8N_PATH=__PATH__/ N8N_PATH=__PATH__/
# Actual public address, especially useful for external tools connecting to n8n
WEBHOOK_URL=https://__DOMAIN____PATH__
# Optional timezone to set which gets used by Cron-Node by default # Optional timezone to set which gets used by Cron-Node by default
# If not set New York time will be used # If not set New York time will be used
GENERIC_TIMEZONE=__TIMEZONE__ GENERIC_TIMEZONE=__TIMEZONE__

View file

@ -6,7 +6,7 @@
"en": "Workflow Automation Tool. Easily automate tasks across different services", "en": "Workflow Automation Tool. Easily automate tasks across different services",
"fr": "Outil d'automatisation du flux de travail. Automatisez facilement les tâches sur différents services" "fr": "Outil d'automatisation du flux de travail. Automatisez facilement les tâches sur différents services"
}, },
"version": "0.138.0~ynh1", "version": "0.153.0~ynh1",
"url": "https://n8n.io/", "url": "https://n8n.io/",
"upstream": { "upstream": {
"license": "Apache-2.0-with-commons-clause", "license": "Apache-2.0-with-commons-clause",

View file

@ -105,7 +105,7 @@ ynh_script_progression --message="Installing $app..." --weight=2
pushd $final_path pushd $final_path
ynh_use_nodejs ynh_use_nodejs
ynh_exec_warn_less env $ynh_node_load_PATH npm install n8n --unsafe-perm ynh_exec_warn_less env $ynh_node_load_PATH npm install n8n@${n8n_version}
popd popd
chmod 750 "$final_path" chmod 750 "$final_path"