1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/code-server_ynh.git synced 2024-09-03 18:16:28 +02:00
code-server_ynh/manifest.json

84 lines
3.1 KiB
JSON
Raw Normal View History

2021-05-27 02:26:40 +02:00
{
2021-05-29 05:47:54 +02:00
"name": "code-server",
"id": "code-server",
2021-05-27 02:26:40 +02:00
"packaging_format": 1,
"description": {
2021-05-29 05:47:54 +02:00
"en": "Run VS Code on your server and access it in the browser",
"fr": "Lancez VS Code sur votre serveur et accédez-y depuis votre navigateur"
2021-05-27 02:26:40 +02:00
},
2021-09-17 02:58:25 +02:00
"version": "3.12.0~ynh1",
2021-05-29 05:47:54 +02:00
"url": "https://github.com/cdr/code-server",
2021-05-27 02:26:40 +02:00
"upstream": {
2021-05-29 05:47:54 +02:00
"license": "mit",
"website": "https://github.com/cdr/code-server",
"admindoc": "https://github.com/cdr/code-server/tree/main/docs",
"userdoc": "https://github.com/cdr/code-server/tree/main/docs",
"code": "https://github.com/cdr/code-server"
2021-05-27 02:26:40 +02:00
},
2021-05-29 05:47:54 +02:00
"license": "MIT",
2021-05-27 02:26:40 +02:00
"maintainer": {
2021-05-29 05:47:54 +02:00
"name": "Jules Bertholet",
"email": "jules.bertholet@gmail.com"
2021-05-27 02:26:40 +02:00
},
"requirements": {
"yunohost": ">= 4.1.3"
},
"multi_instance": true,
"services": [
2021-05-29 05:47:54 +02:00
"nginx"
2021-05-27 02:26:40 +02:00
],
"arguments": {
"install" : [
{
"name": "domain",
"type": "domain",
"example": "example.com"
},
{
"name": "admin",
"type": "user",
"example": "johndoe"
},
{
"name": "is_public",
"type": "boolean",
"default": true
},
{
2021-05-29 05:47:54 +02:00
"name": "password",
"type": "password",
"example": "Choose a password",
"optional": true
},
{
"name": "extension_service_url",
2021-05-27 02:26:40 +02:00
"type": "string",
"ask": {
2021-05-29 05:47:54 +02:00
"en": "Choose a custom extension gallery serviceUrl (https://github.com/VSCodium/vscodium/blob/master/DOCS.md#extensions--marketplace)",
"fr": "choisir un serviceUrl de galerie d'extensions personnalisé (https://github.com/VSCodium/vscodium/blob/master/DOCS.md#extensions--marketplace)"
2021-05-27 02:26:40 +02:00
},
2021-05-29 05:47:54 +02:00
"optional": true
2021-05-27 02:26:40 +02:00
},
{
2021-05-29 05:47:54 +02:00
"name": "extension_item_url",
"type": "string",
"ask": {
"en": "Choose a custom extension gallery itemUrl (https://github.com/VSCodium/vscodium/blob/master/DOCS.md#extensions--marketplace)",
"fr": "choisir un itemUrl de galerie d'extensions personnalisé (https://github.com/VSCodium/vscodium/blob/master/DOCS.md#extensions--marketplace)"
},
"optional": true
},
{
"name": "enable_proposed_api",
"type": "string",
"ask": {
"en": "Choose a list of extensions that can access proposed APIs (https://github.com/VSCodium/vscodium/blob/master/DOCS.md#proprietary-extensions)",
"fr": "choisir une liste d'extensions qui peuvent accéder aux APIs proposées (https://github.com/VSCodium/vscodium/blob/master/DOCS.md#proprietary-extensions)"
2021-05-27 02:26:40 +02:00
},
2021-05-29 05:47:54 +02:00
"optional": true,
"example": "extension.id, another.extension.id"
2021-05-27 02:26:40 +02:00
}
]
}
}