mirror of
https://github.com/YunoHost-Apps/pgadmin_ynh.git
synced 2024-09-03 19:56:38 +02:00
72c3a867da
- Fix regression #35 - python dependancy - Fix regression #35 - armv7 support - Fix regression #35 - bad install dir - Fix DB setup and don't request password to user - Fix data storage path - Add SSO support - Update app to 8.3 (will be updated to 8.4 by auto update) - Add mail support - Remove legacy uwsig and use gunicorn instead - Remove expect dependancy - Set permission explicitly - Add multi instance support - Simplify again restore script
77 lines
1.9 KiB
TOML
77 lines
1.9 KiB
TOML
#:schema https://raw.githubusercontent.com/YunoHost/apps/master/schemas/manifest.v2.schema.json
|
|
|
|
packaging_format = 2
|
|
|
|
id = "pgadmin"
|
|
name = "pgAdmin4"
|
|
description.en = "Manage PostgreSQL databases over the web"
|
|
description.fr = "Application web de gestion des bases de données PostgreSQL"
|
|
|
|
version = "8.3~ynh2"
|
|
|
|
maintainers = ["Josué Tille"]
|
|
|
|
[upstream]
|
|
license = "PostgreSQL"
|
|
website = "https://www.pgadmin.org"
|
|
admindoc = "https://www.pgadmin.org/docs"
|
|
cpe = "cpe:2.3:a:pgadmin:pgadmin"
|
|
|
|
[integration]
|
|
yunohost = ">= 11.0.11"
|
|
architectures = "all"
|
|
multi_instance = true
|
|
ldap = true
|
|
sso = true
|
|
disk = "700M"
|
|
ram.build = "300M"
|
|
ram.runtime = "200M"
|
|
|
|
[install]
|
|
[install.domain]
|
|
type = "domain"
|
|
|
|
[install.path]
|
|
type = "path"
|
|
default = "/pgadmin"
|
|
|
|
[install.init_main_permission]
|
|
type = "group"
|
|
default = "admins"
|
|
|
|
[resources]
|
|
[resources.sources.pgadmin_prebuilt_armv7_bookworm]
|
|
prefetch = false
|
|
armhf.url = "https://github.com/YunoHost-Apps/pgadmin_python_build/releases/download/v4-8.3/pgadmin_4-8.3-bookworm-bin1_armv7l.tar.gz"
|
|
armhf.sha256 = "b2fdf884fe74e2e6a41d8f5f8f4b1967bc4ad6fffcfa5a76fc34ef6fe6c62e7e"
|
|
|
|
[resources.sources.pgadmin_prebuilt_armv7_bullseye]
|
|
prefetch = false
|
|
armhf.url = "https://github.com/YunoHost-Apps/pgadmin_python_build/releases/download/v4-8.3/pgadmin_4-8.3-bullseye-bin1_armv7l.tar.gz"
|
|
armhf.sha256 = "bf1136e71b52a9bb75b6e3bc75a23a5d49fa104291f8b3f0114593e123e0d078"
|
|
|
|
[resources.system_user]
|
|
allow_email = true
|
|
home = "/opt/yunohost/__APP__"
|
|
|
|
[resources.install_dir]
|
|
dir = "/opt/yunohost/__APP__"
|
|
|
|
[resources.data_dir]
|
|
|
|
[resources.permissions]
|
|
main.url = "/"
|
|
|
|
[resources.apt]
|
|
packages = [
|
|
"python3-pip",
|
|
"build-essential",
|
|
"python3-dev",
|
|
"python3-venv",
|
|
"postgresql",
|
|
"libpq-dev",
|
|
"libkrb5-dev",
|
|
]
|
|
|
|
[resources.database]
|
|
type = "postgresql"
|