1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071 |
- {
- "name": "YunoHost example app",
- "id": "ynhexample",
- "description": {
- "en": "Example package for YunoHost application.",
- "fr": "Exemple de package d’application pour YunoHost."
- },
- "url": "https://example.com",
- "license": "free",
- "maintainer": {
- "name": "John doe",
- "email": "john.doe@example.com",
- "url": "http://example.com"
- },
- "multi_instance": "false",
- "services": [
- "nginx",
- "php5-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",
- "ask": {
- "en": "Is it a public application?",
- "fr": "Est-ce une application publique ?"
- },
- "choices": ["Yes", "No"],
- "default": "Yes"
- },
- {
- "name": "my_boolean",
- "type": "boolean",
- "ask": {
- "en": "Do you want to check this boolean ?",
- "fr": "Tu veux cocher ce booléen ?"
- },
- "default": true
- }
- ]
- }
- }
|