Skip to content

Commit b251ba1

Browse files
committed
v2
1 parent 3cdcff1 commit b251ba1

File tree

13 files changed

+45
-679
lines changed

13 files changed

+45
-679
lines changed

.github/workflows/updater.sh

Lines changed: 0 additions & 97 deletions
This file was deleted.

.github/workflows/updater.yml

Lines changed: 0 additions & 49 deletions
This file was deleted.

check_process

Lines changed: 0 additions & 20 deletions
This file was deleted.
File renamed without changes.

manifest.json

Lines changed: 0 additions & 49 deletions
This file was deleted.

manifest.toml

Lines changed: 15 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -14,24 +14,23 @@ license = "AGPL-3.0-only"
1414
website = "https://www.nocodb.com"
1515
demo = "https://www.nocodb.com/demos"
1616
code = "https://github.com/nocodb/nocodb"
17-
cpe = "???" # FIXME: optional but recommended if relevant, this is meant to contain the Common Platform Enumeration, which is sort of a standard id for applications defined by the NIST. In particular, Yunohost may use this is in the future to easily track CVE (=security reports) related to apps. The CPE may be obtained by searching here: https://nvd.nist.gov/products/cpe/search. For example, for Nextcloud, the CPE is 'cpe:2.3:a:nextcloud:nextcloud' (no need to include the version number)
18-
fund = "???" # FIXME: optional but recommended (or remove if irrelevant / not applicable). This is meant to be an URL where people can financially support this app, especially when its development is based on volunteers and/or financed by its community. YunoHost may later advertise it in the webadmin.
1917

2018
[integration]
21-
yunohost = ">= 4.3.0"
22-
architectures = "all" # FIXME: can be replaced by a list of supported archs using the dpkg --print-architecture nomenclature (amd64/i386/armhf/arm64), for example: ["amd64", "i386"]
19+
yunohost = ">= 11.2"
20+
architectures = ["amd64", "arm64"]
2321
multi_instance = false
24-
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.
25-
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.
26-
disk = "50M" # FIXME: replace with an **estimate** minimum disk requirement. e.g. 20M, 400M, 1G, ...
27-
ram.build = "50M" # FIXME: replace with an **estimate** minimum ram requirement. e.g. 50M, 400M, 1G, ...
28-
ram.runtime = "50M" # FIXME: replace with an **estimate** minimum ram requirement. e.g. 50M, 400M, 1G, ...
22+
23+
ldap = false
24+
25+
sso = false
26+
27+
disk = "50M"
28+
ram.build = "50M"
29+
ram.runtime = "50M"
2930

3031
[install]
3132
[install.domain]
32-
# this is a generic question - ask strings are automatically handled by Yunohost's core
3333
type = "domain"
34-
full_domain = true
3534

3635
[install.init_main_permission]
3736
help.en = "The app has its own user login system, so you can disable YunoHost's SSO, especially if you use NocoDB's API."
@@ -49,8 +48,13 @@ ram.runtime = "50M" # FIXME: replace with an **estimate** minimum ram requiremen
4948

5049
[resources.install_dir]
5150

51+
[resources.ports]
52+
5253
[resources.permissions]
5354
main.url = "/"
5455

56+
[resources.apt]
57+
packages = "mariadb-server"
58+
5559
[resources.database]
5660
type = "mysql"

scripts/backup

Lines changed: 0 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -10,27 +10,6 @@
1010
source ../settings/scripts/_common.sh
1111
source /usr/share/yunohost/helpers
1212

13-
#=================================================
14-
# MANAGE SCRIPT FAILURE
15-
#=================================================
16-
17-
#REMOVEME? ynh_clean_setup () {
18-
true
19-
}
20-
# Exit if an error occurs during the execution of the script
21-
#REMOVEME? ynh_abort_if_errors
22-
23-
#=================================================
24-
# LOAD SETTINGS
25-
#=================================================
26-
#REMOVEME? ynh_print_info --message="Loading installation settings..."
27-
28-
#REMOVEME? app=$YNH_APP_INSTANCE_NAME
29-
30-
#REMOVEME? #REMOVEME? install_dir=$(ynh_app_setting_get --app=$app --key=install_dir)
31-
#REMOVEME? domain=$(ynh_app_setting_get --app=$app --key=domain)
32-
#REMOVEME? db_name=$(ynh_app_setting_get --app=$app --key=db_name)
33-
3413
#=================================================
3514
# DECLARE DATA AND CONF FILES TO BACKUP
3615
#=================================================

0 commit comments

Comments
 (0)