1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/gancio_ynh.git synced 2024-09-03 20:36:19 +02:00

add postgresql dependency

This commit is contained in:
lapineige 2023-09-23 19:08:36 +02:00 committed by GitHub
parent 2fa4f03a2f
commit 10e27a0afb
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -79,30 +79,32 @@ ram.runtime = "50M"
# autoupdate.strategy = "latest_github_tag" # autoupdate.strategy = "latest_github_tag"
[resources.system_user] [resources.system_user]
# This will provision/deprovision a unix system user # This will provision/deprovision a unix system user
[resources.install_dir]
# This will create/remove the install dir as /var/www/$app [resources.install_dir]
# and store the corresponding setting $install_dir # This will create/remove the install dir as /var/www/$app
# and store the corresponding setting $install_dir
[resources.data_dir]
# This will create/remove the data dir as /home/yunohost.app/$app
# and store the corresponding setting $data_dir
subdirs = ['uploads', 'user_locale']
[resources.data_dir]
# This will create/remove the data dir as /home/yunohost.app/$app
# and store the corresponding setting $data_dir
subdirs = ['uploads', 'user_locale']
[resources.permissions] [resources.permissions]
# This will configure SSOwat permission for $domain/$path/ # This will configure SSOwat permission for $domain/$path/
# The initial allowed group of user is configured via the init_main_permission question (public=visitors, private=all_users) # The initial allowed group of user is configured via the init_main_permission question (public=visitors, private=all_users)
main.url = "/" main.url = "/"
[resources.ports] [resources.ports]
# This will pick a random port for reverse-proxying and store it as the $port setting # This will pick a random port for reverse-proxying and store it as the $port setting
[resources.apt] [resources.apt]
# This will automatically install/uninstall the following apt packages # This will automatically install/uninstall the following apt packages
# and implicitly define the $phpversion setting as 8.0 (if phpX.Y-foobar dependencies are listed) # and implicitly define the $phpversion setting as 8.0 (if phpX.Y-foobar dependencies are listed)
packages = "" packages = "postgresql"
# This will configure an extra repository to install yarn dependency # This will configure an extra repository to install yarn dependency
extras.yarn.repo = "deb https://dl.yarnpkg.com/debian/ stable main" extras.yarn.repo = "deb https://dl.yarnpkg.com/debian/ stable main"
extras.yarn.key = "https://dl.yarnpkg.com/debian/pubkey.gpg" extras.yarn.key = "https://dl.yarnpkg.com/debian/pubkey.gpg"
extras.yarn.packages = "yarn" extras.yarn.packages = "yarn"
[resources.database] [resources.database]
# This will automatically provision/deprovison a MySQL DB and store the corresponding credentials in settings $db_user, $db_name, $db_pwd # This will automatically provision/deprovison a MySQL DB and store the corresponding credentials in settings $db_user, $db_name, $db_pwd
type = "postgresql" type = "postgresql"