1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/overleaf_ynh.git synced 2024-09-03 19:56:27 +02:00
overleaf_ynh/manifest.toml

97 lines
2.7 KiB
TOML
Raw Normal View History

2023-11-19 16:41:50 +01:00
#:schema https://raw.githubusercontent.com/YunoHost/apps/master/schemas/manifest.v2.schema.json
packaging_format = 2
id = "overleaf"
name = "Overleaf"
2024-01-10 11:02:35 +01:00
description.en = "Online real-time collaborative LaTeX editor"
description.fr = "Éditeur LaTeX collaboratif en ligne et en temps réel"
2023-11-19 16:41:50 +01:00
version = "2024.08.26~ynh1"
2023-11-19 16:41:50 +01:00
maintainers = []
[upstream]
license = "AGPL-3.0-or-later"
website = "https://www.overleaf.com"
userdoc = "https://www.overleaf.com/learn"
code = "https://github.com/overleaf/overleaf"
[integration]
2024-06-05 08:47:33 +02:00
yunohost = ">= 11.2.13"
2024-06-10 10:20:30 +02:00
architectures = ["amd64"]
2023-11-19 16:41:50 +01:00
multi_instance = false
2024-01-10 11:02:35 +01:00
2024-02-12 14:41:44 +01:00
ldap = false
2024-01-10 11:02:35 +01:00
2024-02-12 14:41:44 +01:00
sso = false
2024-01-10 11:02:35 +01:00
2023-11-19 17:01:44 +01:00
disk = "50M"
2024-02-12 14:41:10 +01:00
ram.build = "3G"
ram.runtime = "3G"
2023-11-19 16:41:50 +01:00
[install]
[install.domain]
type = "domain"
[install.init_main_permission]
type = "group"
default = "visitors"
[install.language]
ask.en = "Choose the application language"
ask.fr = "Choisissez la langue de l'application"
2023-11-19 17:01:44 +01:00
type = "select"
2023-11-19 16:41:50 +01:00
choices = ["fr", "en"]
default = "fr"
[install.admin]
type = "user"
[resources]
[resources.sources]
[resources.sources.main]
url = "https://github.com/overleaf/overleaf/archive/229da9ef5fceb5942507e73c0cc84486e33c5c17.tar.gz"
sha256 = "cc5549cc615bab3c34802472f337ba66f25297683d1555e3dc78ebbc298c999c"
2024-04-09 21:26:21 +02:00
autoupdate.strategy = "latest_github_commit"
2023-11-19 16:41:50 +01:00
[resources.system_user]
2023-11-19 17:56:19 +01:00
allow_email = true
2023-11-19 16:41:50 +01:00
[resources.install_dir]
[resources.data_dir]
2024-02-12 13:22:40 +01:00
subdirs = [ "compiles", "output", "cache", "user_files", "template_files", "history" ]
2023-11-19 16:41:50 +01:00
[resources.permissions]
main.url = "/"
2023-11-19 17:14:16 +01:00
main.auth_header = false
2023-11-19 17:08:32 +01:00
admin.url = "/launchpad"
2023-12-05 19:12:12 +01:00
admin.allowed = "admins"
admin.show_tile = false
2023-11-19 16:41:50 +01:00
[resources.ports]
main.default = 8095
[resources.apt]
2024-02-13 07:47:53 +01:00
packages = [
# Overleaf dependencies
2024-06-12 19:13:50 +02:00
"texlive", "texlive-xetex", "texlive-base", "texlive-font-utils", "redis-server", "latexmk", "python3-pygments", "build-essential",
2024-02-13 07:47:53 +01:00
# Aspell dependencies
"aspell-ar", "aspell-ar-large",
2024-02-13 07:47:53 +01:00
"aspell-bg", "aspell-br", "aspell-ca", "aspell-cs", "aspell-cy", "aspell-da", "aspell-de", "aspell-de-1901",
"aspell-el", "aspell-en", "aspell-eo", "aspell-es", "aspell-et", "aspell-eu-es", "aspell-fa",
"aspell-fo", "aspell-fr", "aspell-ga", "aspell-gl-minimos", "aspell-hr", "aspell-hsb",
"aspell-it", "aspell-kk", "aspell-ku", "aspell-lt", "aspell-lv", "aspell-nl", "aspell-no",
"aspell-pa", "aspell-pl", "aspell-pt-br", "aspell-pt-pt", "aspell-ro",
"aspell-ru", "aspell-sk", "aspell-sl", "aspell-sv", "aspell-tl",
2024-02-13 08:56:33 +01:00
# Filestore dependencies
"ghostscript", "imagemagick", "optipng", "iproute2",
2024-02-13 09:09:37 +01:00
# clsi dependencies
"poppler-utils",
2024-03-07 18:37:16 +01:00
]