1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/flarum_ynh.git synced 2024-09-03 18:36:24 +02:00
flarum_ynh/manifest.json
Titus PiJean 76d6c8f7b9 Better composer installation and fix typo
Addresses #9 :

If `composer` is not installed, php5-fpm ENV is now firstly updated to set `/var/www/.composer` as `composer` 's home.
Fix a typo where future automatic postinstall asked for `configuration.ymls` instead of `.yml`
2016-10-12 20:03:23 +02:00

87 lines
2.5 KiB
JSON
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

{
"name": "Flarum",
"id": "flarum",
"packaging_format": 1,
"description": {
"en": "Flarum (open-source forum software) package for YunoHost.",
"fr": "Package Flarum (système de forum libre) pour YunoHost."
},
"url": "http://flarum.org/",
"license": "MIT",
"version": "0.1.0-beta.5",
"maintainer": {
"name": "Titus PiJean",
"email": "tituspijean@outlook.com"
},
"requirements": {
"yunohost": ">= 2.4.0"
},
"multi_instance": true,
"services": [
"nginx",
"php5-fpm",
"mysql"
],
"arguments": {
"install" : [
{
"name": "domain",
"type": "domain",
"ask": {
"en": "Choose a domain name for Flarum",
"fr": "Choisissez un nom de domaine pour Flarum"
},
"example": "example.com"
},
{
"name": "path",
"type": "path",
"ask": {
"en": "Choose a path for Flarum",
"fr": "Choisissez un chemin pour Flarum"
},
"example": "/flarum",
"default": "/flarum"
},
{
"name": "admin",
"type": "user",
"ask": {
"en": "Choose an admin user",
"fr": "Choisissez ladministrateur"
},
"example": "johndoe",
"optional": true
},
{
"name": "adminpass",
"type": "password",
"ask": {
"en": "Put your password",
"fr": "Insérez votre mot de passe"
},
"example": "******",
"optional": true
},
{
"name": "title",
"ask": {
"en": "Choose a title for your forum",
"fr": "Choisissez un titre pour votre forum"
},
"example": "My forum",
"default": "",
"optional": true
},
{
"name": "is_public",
"type": "boolean",
"ask": {
"en": "Is it a public application?",
"fr": "Est-ce une application publique ?"
},
"default": true
}
]
}
}