1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/mstream_ynh.git synced 2024-09-03 19:46:17 +02:00
This commit is contained in:
ericgaspar 2022-04-14 16:01:13 +02:00
parent 636c9d9d39
commit ddca1b75b2
No known key found for this signature in database
GPG key ID: 574F281483054D44
3 changed files with 10 additions and 9 deletions

View file

@ -2,8 +2,7 @@ Some long and extensive description of what the app is and does, lorem ipsum dol
### Features
- Ut enim ad minim veniam, quis nostrud exercitation ullamco ;
- Laboris nisi ut aliquip ex ea commodo consequat ;
- Duis aute irure dolor in reprehenderit in voluptate ;
- Velit esse cillum dolore eu fugiat nulla pariatur ;
- Excepteur sint occaecat cupidatat non proident, sunt in culpa."
Cross Platform. Works on Windows, OSX, Linux, & FreeBSD
Light on memory and CPU
Tested on multi-terabyte libraries
Runs on ARM boards like the Raspberry Pi

View file

@ -18,16 +18,15 @@
},
"license": "AGPL-3.0-only",
"maintainer": {
"name": "John doe",
"email": "john.doe@example.com"
"name": "",
"email": ""
},
"requirements": {
"yunohost": ">= 4.3.0"
},
"multi_instance": true,
"services": [
"nginx",
"mysql"
"nginx"
],
"arguments": {
"install" : [

View file

@ -110,6 +110,9 @@ ynh_app_setting_set --app=$app --key=datadir --value=$datadir
mkdir -p $datadir
mkdir -p $datadir/media/album-art
mkdir -p $datadir/media/db
chmod 750 "$datadir"
chmod -R o-rwx "$datadir"
chown -R $app:www-data "$datadir"