From ede4ed84a72ee630b94f6251bb48f79d189c8f1d Mon Sep 17 00:00:00 2001 From: frju365 Date: Sun, 11 Mar 2018 01:29:29 +0100 Subject: [PATCH] Create manifest.json --- manifest.json | 58 +++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 58 insertions(+) create mode 100644 manifest.json diff --git a/manifest.json b/manifest.json new file mode 100644 index 0000000..cefa8e7 --- /dev/null +++ b/manifest.json @@ -0,0 +1,58 @@ +{ + "name": "SPFToolBox", + "id": "spftoolbox", + "packaging_format": 1, + "description": { + "en": "Application to check Domain Name settings.", + "fr": "Application qui permet de tester son nom de domaine." + }, + "version": "1.0", + "url": "http://spftoolbox.com/", + "license": "GPL-3", + "maintainer": { + "name": "frju365", + "email": "abld@tutanota.com", + "url": "https://www.abld.info" + }, + "requirements": { + "yunohost": ">= 2.7.2" + }, + "multi_instance": true, + "services": [ + "nginx", + "php5-fpm", + "mysql" + ], + "arguments": { + "install" : [ + { + "name": "domain", + "type": "domain", + "ask": { + "en": "Choose a domain name for SPFToolBox", + "fr": "Choisissez un nom de domaine pour SPFToolBox" + }, + "example": "example.com" + }, + { + "name": "path", + "type": "path", + "ask": { + "en": "Choose a path for SPFToolBox", + "fr": "Choisissez un chemin pour SPFToolBox" + }, + "example": "/example", + "default": "/example" + }, + { + "name": "is_public", + "type": "boolean", + "ask": { + "en": "Is it a public application?", + "fr": "Est-ce une application publique ?" + }, + "default": true + } + ] + } +}