mirror of
https://github.com/YunoHost-Apps/couchdb_ynh.git
synced 2024-09-03 18:16:11 +02:00
70 lines
2.1 KiB
TOML
70 lines
2.1 KiB
TOML
#:schema https://raw.githubusercontent.com/YunoHost/apps/master/schemas/manifest.v2.schema.json
|
|
|
|
packaging_format = 2
|
|
|
|
id = "couchdb"
|
|
name = "CouchDB"
|
|
description.en = "Open-source document-oriented NoSQL database"
|
|
description.fr = "Système de gestion de base de données orienté documents"
|
|
|
|
version = "3.2.2~ynh2"
|
|
|
|
maintainers = ["Squeak"]
|
|
|
|
[upstream]
|
|
license = "Apache-2.0"
|
|
website = "https://couchdb.apache.org/"
|
|
admindoc = "https://docs.couchdb.org/en/stable/"
|
|
code = "https://github.com/apache/couchdb"
|
|
cpe = "cpe:2.3:a:apache:couchdb"
|
|
|
|
[integration]
|
|
yunohost = ">= 11.1"
|
|
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"]
|
|
multi_instance = false
|
|
ldap = "not_relevant"
|
|
sso = "not_relevant"
|
|
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, ...
|
|
|
|
[install]
|
|
[install.domain]
|
|
# this is a generic question - ask strings are automatically handled by Yunohost's core
|
|
type = "domain"
|
|
|
|
[install.path]
|
|
# this is a generic question - ask strings are automatically handled by Yunohost's core
|
|
type = "path"
|
|
default = "/couch"
|
|
|
|
[install.init_main_permission]
|
|
type = "group"
|
|
default = "visitors"
|
|
|
|
[install.password]
|
|
# this is a generic question - ask strings are automatically handled by Yunohost's core
|
|
type = "password"
|
|
|
|
[resources]
|
|
[resources.system_user]
|
|
|
|
[resources.install_dir]
|
|
dir = "/opt/couchdb"
|
|
|
|
[resources.data_dir]
|
|
|
|
[resources.permissions]
|
|
main.url = "/"
|
|
|
|
[resources.ports]
|
|
main.default = 5984
|
|
|
|
[resources.apt]
|
|
packages = ["gnupg", "ca-certificates"]
|
|
|
|
# FIXME : find a way to do that here
|
|
# [resources.apt.extras.couchdb]
|
|
# repo = "deb https://apache.jfrog.io/artifactory/couchdb-deb/ $(lsb_release -c -s) main"
|
|
# key = "https://couchdb.apache.org/repo/keys.asc"
|
|
# packages = ["couchdb"]
|