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:
parent
c7080bd6d8
commit
5e6cbb6ae3
4 changed files with 18 additions and 16 deletions
18
README.md
18
README.md
|
@ -1,6 +1,18 @@
|
|||
# funkwhale_ynh
|
||||
# Funkwhale
|
||||
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/
|
|
@ -6,7 +6,6 @@
|
|||
;; Test complet
|
||||
; Manifest
|
||||
domain="domain.tld" (DOMAIN)
|
||||
path="/" (PATH)
|
||||
admin="john" (USER)
|
||||
is_public=1 (PUBLIC|public=1|private=0)
|
||||
; Checks
|
||||
|
@ -42,4 +41,4 @@ Notification=all
|
|||
;;; Upgrade options
|
||||
; commit=2d2aedf3dac89e47f4c7083c0b9f55988ab3de54
|
||||
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
|
|
@ -8,7 +8,7 @@
|
|||
"description": {
|
||||
"en": "A modern, convivial and free music server"
|
||||
},
|
||||
"version": "0.14.1~ynh1",
|
||||
"version": "0.14.2~ynh1",
|
||||
"url": "https://funkwhale.audio",
|
||||
"license": "BSD-3-Clause",
|
||||
"maintainer": {
|
||||
|
@ -29,15 +29,6 @@
|
|||
},
|
||||
"example": "domain.fr"
|
||||
},
|
||||
{
|
||||
"name": "path",
|
||||
"type": "path",
|
||||
"ask": {
|
||||
"en": "Choose a path (for now, only / works)"
|
||||
},
|
||||
"example": "/",
|
||||
"default": "/"
|
||||
},
|
||||
{
|
||||
"name": "is_public",
|
||||
"type": "boolean",
|
||||
|
|
|
@ -21,7 +21,7 @@ ynh_abort_if_errors
|
|||
#=================================================
|
||||
|
||||
domain=$YNH_APP_ARG_DOMAIN
|
||||
path_url=$YNH_APP_ARG_PATH
|
||||
path_url="/"
|
||||
is_public=$YNH_APP_ARG_IS_PUBLIC
|
||||
admin=$YNH_APP_ARG_ADMIN
|
||||
|
||||
|
|
Loading…
Reference in a new issue