123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990 |
- {
- "name": "YunoHost example app",
- "id": "ynhexample",
- "packaging_format": 1,
- "description": {
- "en": "Example package for YunoHost application.",
- "fr": "Exemple de package d’application pour YunoHost."
- },
- "version": "1.0~ynh1",
- "url": "https://example.com",
- "license": "free",
- "maintainer": {
- "name": "John doe",
- "email": "john.doe@example.com",
- "url": "http://example.com"
- },
- "requirements": {
- "yunohost": ">= 3.4"
- },
- "multi_instance": true,
- "services": [
- "nginx",
- "php7.0-fpm",
- "mysql"
- ],
- "arguments": {
- "install" : [
- {
- "name": "domain",
- "type": "domain",
- "ask": {
- "en": "Choose a domain name for ynhexample",
- "fr": "Choisissez un nom de domaine pour ynhexample"
- },
- "example": "example.com"
- },
- {
- "name": "path",
- "type": "path",
- "ask": {
- "en": "Choose a path for ynhexample",
- "fr": "Choisissez un chemin pour ynhexample"
- },
- "example": "/example",
- "default": "/example"
- },
- {
- "name": "admin",
- "type": "user",
- "ask": {
- "en": "Choose an admin user",
- "fr": "Choisissez l’administrateur"
- },
- "example": "johndoe"
- },
- {
- "name": "is_public",
- "type": "boolean",
- "ask": {
- "en": "Is it a public application?",
- "fr": "Est-ce une application publique ?"
- },
- "default": true
- },
- {
- "name": "language",
- "type": "string",
- "ask": {
- "en": "Choose the application language",
- "fr": "Choisissez la langue de l'application"
- },
- "choices": ["fr", "en"],
- "default": "fr"
- },
- {
- "name": "password",
- "type": "password",
- "ask": {
- "en": "Set the administrator password",
- "fr": "Définissez le mot de passe administrateur"
- },
- "help": {
- "en": "Use the help field to add an information for the admin about this question.",
- "fr": "Utilisez le champ aide pour ajouter une information à l'intention de l'administrateur à propos de cette question."
- },
- "example": "Choose a password"
- }
- ]
- }
- }
|