1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/funkwhale_ynh.git synced 2024-09-03 18:36:24 +02:00

Remove path from manifest and improve readme

This commit is contained in:
Jean-Baptiste Holcroft 2018-06-17 15:54:08 +02:00
parent c7080bd6d8
commit 5e6cbb6ae3
4 changed files with 18 additions and 16 deletions

View file

@ -1,6 +1,18 @@
# funkwhale_ynh # Funkwhale
A modern, convivial and free music server on YunoHost A modern, convivial and free music server on YunoHost
Installation has to be done on root for now. I'm working on enabling it in subpath. [![Install Funkwhale with YunoHost](https://install-app.yunohost.org/install-with-yunohost.png)](https://install-app.yunohost.org/?app=funkwhale)
Admin passwork is **funkwhale**, login is what you provied at installation. Installation requires a dedicated domain for now. I hope subpath installation will be possible in the future.
**Shipped version:** 0.14.2
## Admin
Admin password is **funkwhale**, login is the user you provided at installation.
## Links
* Report a bug: https://github.com/YunoHost-Apps/funkwhale_ynh/
* Funkwhale website: https://funkwhale.audio/
* YunoHost website: https://yunohost.org/

View file

@ -6,7 +6,6 @@
;; Test complet ;; Test complet
; Manifest ; Manifest
domain="domain.tld" (DOMAIN) domain="domain.tld" (DOMAIN)
path="/" (PATH)
admin="john" (USER) admin="john" (USER)
is_public=1 (PUBLIC|public=1|private=0) is_public=1 (PUBLIC|public=1|private=0)
; Checks ; Checks
@ -42,4 +41,4 @@ Notification=all
;;; Upgrade options ;;; Upgrade options
; commit=2d2aedf3dac89e47f4c7083c0b9f55988ab3de54 ; commit=2d2aedf3dac89e47f4c7083c0b9f55988ab3de54
name=Upgrade from 0.14 name=Upgrade from 0.14
manifest_arg=domain=DOMAIN&path=PATH&admin=USER&is_public=1 manifest_arg=domain=DOMAIN&path=/&admin=USER&is_public=1

View file

@ -8,7 +8,7 @@
"description": { "description": {
"en": "A modern, convivial and free music server" "en": "A modern, convivial and free music server"
}, },
"version": "0.14.1~ynh1", "version": "0.14.2~ynh1",
"url": "https://funkwhale.audio", "url": "https://funkwhale.audio",
"license": "BSD-3-Clause", "license": "BSD-3-Clause",
"maintainer": { "maintainer": {
@ -29,15 +29,6 @@
}, },
"example": "domain.fr" "example": "domain.fr"
}, },
{
"name": "path",
"type": "path",
"ask": {
"en": "Choose a path (for now, only / works)"
},
"example": "/",
"default": "/"
},
{ {
"name": "is_public", "name": "is_public",
"type": "boolean", "type": "boolean",

View file

@ -21,7 +21,7 @@ ynh_abort_if_errors
#================================================= #=================================================
domain=$YNH_APP_ARG_DOMAIN domain=$YNH_APP_ARG_DOMAIN
path_url=$YNH_APP_ARG_PATH path_url="/"
is_public=$YNH_APP_ARG_IS_PUBLIC is_public=$YNH_APP_ARG_IS_PUBLIC
admin=$YNH_APP_ARG_ADMIN admin=$YNH_APP_ARG_ADMIN