mirror of
https://github.com/YunoHost-Apps/django-fritzconnection_ynh.git
synced 2024-09-03 18:26:24 +02:00
66 lines
1.4 KiB
TOML
66 lines
1.4 KiB
TOML
|
#:schema https://raw.githubusercontent.com/YunoHost/apps/master/schemas/manifest.v2.schema.json
|
||
|
|
||
|
packaging_format = 2
|
||
|
|
||
|
id = "django-fritzconnection"
|
||
|
name = "django-fritzconnection"
|
||
|
description.en = "Web based FritzBox management using Python/Django."
|
||
|
|
||
|
version = "0.2.0~ynh3"
|
||
|
|
||
|
maintainers = ["Jens Diemer"]
|
||
|
|
||
|
[upstream]
|
||
|
license = "GPL-3.0"
|
||
|
code = "https://github.com/jedie/django-fritzconnection"
|
||
|
|
||
|
[integration]
|
||
|
yunohost = ">= 11.2"
|
||
|
architectures = "all"
|
||
|
multi_instance = true
|
||
|
ldap = true
|
||
|
sso = true
|
||
|
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]
|
||
|
type = "domain"
|
||
|
|
||
|
[install.path]
|
||
|
type = "path"
|
||
|
default = "/django-fritzconnection"
|
||
|
|
||
|
[install.init_main_permission]
|
||
|
type = "group"
|
||
|
default = "visitors"
|
||
|
|
||
|
[install.admin]
|
||
|
type = "user"
|
||
|
|
||
|
[resources]
|
||
|
[resources.system_user]
|
||
|
|
||
|
[resources.install_dir]
|
||
|
|
||
|
[resources.permissions]
|
||
|
main.url = "/"
|
||
|
|
||
|
[resources.ports]
|
||
|
|
||
|
[resources.apt]
|
||
|
packages = [
|
||
|
"build-essential",
|
||
|
"python3-dev",
|
||
|
"python3-pip",
|
||
|
"python3-venv",
|
||
|
"git",
|
||
|
"libpq-dev",
|
||
|
"postgresql",
|
||
|
"postgresql-contrib",
|
||
|
]
|
||
|
|
||
|
[resources.database]
|
||
|
type = "postgresql"
|