mirror of
https://github.com/YunoHost-Apps/code-server_ynh.git
synced 2024-09-03 18:16:28 +02:00
28 lines
986 B
TOML
28 lines
986 B
TOML
|
version = "1.0"
|
||
|
|
||
|
## (optional) i18n property let you internationalize questions, however this feature
|
||
|
## is only available in core configuration panel (like yunohost domain config).
|
||
|
## So in app config panel this key is ignored for now, but you can internationalize
|
||
|
## by using a lang dictionary (see property name bellow)
|
||
|
# i18n = "prefix_translation_key"
|
||
|
|
||
|
[main]
|
||
|
name = "Main configuration"
|
||
|
services = ["__APP__"]
|
||
|
|
||
|
[main.extensions]
|
||
|
name = "Extensions"
|
||
|
optional = false
|
||
|
|
||
|
[main.extensions.extensions_gallery]
|
||
|
ask = "Extensions Gallery"
|
||
|
type = "string"
|
||
|
example = "{\"serviceUrl\": \"https://open-vsx.org/vscode/gallery\",\"itemUrl\": \"https://open-vsx.org/vscode/item\"}"
|
||
|
bind = ":/opt/yunohost/__APP__/code-server.env"
|
||
|
|
||
|
[main.extensions.enable_proposed_api]
|
||
|
ask = "Enable Proposed API"
|
||
|
type = "tags"
|
||
|
optional = true
|
||
|
bind = "enable-proposed-api:/opt/yunohost/__APP__/config.yaml"
|