66 lines
1.3 KiB
TOML
66 lines
1.3 KiB
TOML
#:schema https://raw.githubusercontent.com/YunoHost/apps/master/schemas/manifest.v2.schema.json
|
|
|
|
packaging_format = 2
|
|
|
|
id = "custom_nodejs"
|
|
name = "Custom Node.js"
|
|
description.en = "Deploy a Node.js application (backend/ssr frontend) in Yunohost using a git repo uri"
|
|
description.fr = "Wiki open source propulsé par Node.js, Git et Markdown"
|
|
|
|
version = "0.1~ynh1"
|
|
|
|
maintainers = ["yeraycat"]
|
|
|
|
[upstream]
|
|
code = "https://gitea.brokenlab.xyz/yeray/custom_nodejs_ynh"
|
|
|
|
[integration]
|
|
yunohost = ">= 11.2"
|
|
architectures = "all"
|
|
multi_instance = true
|
|
|
|
ldap = true
|
|
|
|
sso = false
|
|
|
|
disk = "50M"
|
|
ram.build = "50M"
|
|
ram.runtime = "50M"
|
|
|
|
[install]
|
|
[install.domain]
|
|
type = "domain"
|
|
|
|
[install.path]
|
|
type = "path"
|
|
default = "/node-app"
|
|
|
|
[install.init_main_permission]
|
|
type = "group"
|
|
default = "visitors"
|
|
|
|
[install.git_url]
|
|
type = "url"
|
|
ask.en = "Custom Node.js project's git url"
|
|
ask.es = "URL de git del proyecto de Node.js personalizado"
|
|
|
|
|
|
[install.database]
|
|
ask.en = "Do you need a database?"
|
|
ask.fr = "Avez-vous besoin d'une base de données ?"
|
|
type = "select"
|
|
choices = [ "none", "mysql", "postgresql" ]
|
|
default = "none"
|
|
|
|
[resources]
|
|
[resources.system_user]
|
|
|
|
[resources.install_dir]
|
|
|
|
|
|
|
|
[resources.permissions]
|
|
main.url = "/"
|
|
|
|
|