1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/nocodb_ynh.git synced 2024-09-03 19:56:01 +02:00

Merge pull request #111 from YunoHost-Apps/testing

Upgrade to v0.202.4
This commit is contained in:
tituspijean 2023-10-19 07:12:24 +02:00 committed by GitHub
commit e6e2d1ca0d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
7 changed files with 10 additions and 10 deletions

View file

@ -28,7 +28,7 @@ NocoDB is an open source NoCode platform that turns any database into a smart sp
*(from NocoDB's website)* *(from NocoDB's website)*
**Shipped version:** 0.109.7~ynh1 **Shipped version:** 0.202.4~ynh1
**Demo:** https://www.nocodb.com/demos **Demo:** https://www.nocodb.com/demos
@ -46,7 +46,6 @@ NocoDB has its own authentication system which does not rely on YunoHost's SSO o
* Official app website: <https://www.nocodb.com> * Official app website: <https://www.nocodb.com>
* Upstream app code repository: <https://github.com/nocodb/nocodb> * Upstream app code repository: <https://github.com/nocodb/nocodb>
* YunoHost documentation for this app: <https://yunohost.org/app_nocodb>
* Report a bug: <https://github.com/YunoHost-Apps/nocodb_ynh/issues> * Report a bug: <https://github.com/YunoHost-Apps/nocodb_ynh/issues>
## Developer info ## Developer info

View file

@ -28,7 +28,7 @@ NocoDB is an open source NoCode platform that turns any database into a smart sp
*(from NocoDB's website)* *(from NocoDB's website)*
**Version incluse :** 0.109.7~ynh1 **Version incluse :** 0.202.4~ynh1
**Démo :** https://www.nocodb.com/demos **Démo :** https://www.nocodb.com/demos
@ -46,7 +46,6 @@ NocoDB has its own authentication system which does not rely on YunoHost's SSO o
* Site officiel de lapp : <https://www.nocodb.com> * Site officiel de lapp : <https://www.nocodb.com>
* Dépôt de code officiel de lapp : <https://github.com/nocodb/nocodb> * Dépôt de code officiel de lapp : <https://github.com/nocodb/nocodb>
* Documentation YunoHost pour cette app : <https://yunohost.org/app_nocodb>
* Signaler un bug : <https://github.com/YunoHost-Apps/nocodb_ynh/issues> * Signaler un bug : <https://github.com/YunoHost-Apps/nocodb_ynh/issues>
## Informations pour les développeurs ## Informations pour les développeurs

View file

@ -1,5 +1,5 @@
SOURCE_URL=https://github.com/nocodb/nocodb-seed/archive/f62dcd15b5b859fd8108b74518dcb12a8af180f1.zip SOURCE_URL=https://github.com/nocodb/nocodb-seed/archive/c46e588bf143b04e519fec6e973a3da8fa260ace.zip
SOURCE_SUM=9f5b73ab6b4f562ea04a92b4a023bf27dd1edf29edd3d9cf1fec63b9feeb7153 SOURCE_SUM=7f05ec8cf27c58fcac6c257f3d2e3ea209c663613b7240c12b12e59ed8d6b310
SOURCE_SUM_PRG=sha256sum SOURCE_SUM_PRG=sha256sum
SOURCE_FORMAT=zip SOURCE_FORMAT=zip
SOURCE_EXTRACT=true SOURCE_EXTRACT=true

View file

@ -1,6 +1,6 @@
NODE_ENV=production NODE_ENV=production
PORT=__PORT__ PORT=__PORT__
NC_DB=mysql2://localhost:3306?u=__DB_USER__&p=__DB_PWD__&d=__DB_NAME__ NC_DB=mysql2://127.0.0.1:3306?u=__DB_USER__&p=__DB_PWD__&d=__DB_NAME__
NC_AUTH_JWT_SECRET=__JWT_SECRET__ NC_AUTH_JWT_SECRET=__JWT_SECRET__
NC_DISABLE_TELE=1 NC_DISABLE_TELE=1
NC_PUBLIC_URL=https://__DOMAIN__ NC_PUBLIC_URL=https://__DOMAIN__

View file

@ -6,7 +6,7 @@
"en": "No-code platform that turns any database into a smart spreadsheet", "en": "No-code platform that turns any database into a smart spreadsheet",
"fr": "Plateform sans code qui transforme toute base de données en un tableur intelligent." "fr": "Plateform sans code qui transforme toute base de données en un tableur intelligent."
}, },
"version": "0.109.7~ynh1", "version": "0.202.4~ynh1",
"url": "https://www.nocodb.com", "url": "https://www.nocodb.com",
"upstream": { "upstream": {
"license": "AGPL-3.0-only", "license": "AGPL-3.0-only",

View file

@ -5,7 +5,7 @@
#================================================= #=================================================
# dependencies used by the app # dependencies used by the app
nodejs_version=16 nodejs_version=18
#================================================= #=================================================
# PERSONAL HELPERS # PERSONAL HELPERS

View file

@ -88,8 +88,10 @@ chown -R $app:www-data "$final_path"
ynh_script_progression --message="Upgrading dependencies..." --weight=1 ynh_script_progression --message="Upgrading dependencies..." --weight=1
if [ $nodejs_version != $(ynh_app_setting_get --app=$app --key=nodejs_version) ]; then if [ $nodejs_version != $(ynh_app_setting_get --app=$app --key=nodejs_version) ]; then
# ynh_remove_nodejs will override the target nodejs_version
new_nodejs_version=$nodejs_version
ynh_remove_nodejs ynh_remove_nodejs
ynh_install_nodejs --nodejs_version=$nodejs_version ynh_install_nodejs --nodejs_version=$new_nodejs_version
fi fi
#================================================= #=================================================