nextcloud-app-radio/README.md

32 lines
2.3 KiB
Markdown
Raw Normal View History

2017-01-04 16:15:12 +00:00
# Nextcloud Radio app
2016-11-18 21:45:53 +00:00
This experimental app uses the radio-browser.info api and offers radio stations right in your Nextcloud!
2016-11-18 21:52:23 +00:00
2017-01-04 18:00:55 +00:00
[![](https://onny.project-insanity.org/files/nextcloud-app-radio-screenshot2.png)](https://onny.project-insanity.org/files/nextcloud-app-radio-screenshot2.png)
2017-01-04 16:15:12 +00:00
## Maintainers
* [Jonas Heinrich](https://github.com/onny)
## Installation
2017-08-11 17:52:51 +00:00
* **From the appstore:** The most recent and stable version of the app can be found in the [official appstore](https://apps.nextcloud.com/apps/radio).
* **Using git:** In your `nextcloud/apps/` directory, run `git clone https://git.project-insanity.org/onny/nextcloud-app-radio.git radio`. Then go to the Apps manager tab in your Nextcloud web interface, and enable the Radio app.
* **Using the zip archive:** Download the latest [tar.bz2 archive](https://git.project-insanity.org/onny/nextcloud-app-radio/repository/archive.tar.bz2?ref=master), extract the directory inside your `nextcloud/apps/` directory, and rename it to `radio`. For stable releases, you can also download one of the [releases](https://git.project-insanity.org/onny/nextcloud-app-radio/) tar.bz2 archives. Then go to the Apps manager tab in your Nextcloud web interface, and enable the Radio app.
* **Using package manager:** For ArchLinux, there is an [AUR package](https://aur.archlinux.org/packages/nextcloud-app-radio-git/) available.
2017-01-04 16:15:12 +00:00
## Testing
Can be easily tested using Docker:
```
docker run -v /tmp/nextcloud-app-radio:/opt/nextcloud/apps/radio -d --name nextcloud -p 80:80 rootlogin/nextcloud
```
2017-02-16 10:36:49 +00:00
First part of -v is the path to the cloned or downloaded nextcloud radio app. Debug running container it with:
2017-01-04 16:15:12 +00:00
```
2017-02-16 10:36:49 +00:00
docker exec -i -t 665b4a1e17b6 /bin/bash
```
Where -t specifies the container id. If you further need to access the sqlite-database, logs or files inside the data folder of Nextcloud, that you also have to share this folder with the host:
```
docker run -v /tmp/dockerdata:/data/data -v /tmp/nextcloud-app-radio:/opt/nextcloud/apps/radio -d --name nextcloud -p 80:80 rootlogin/nextcloud
2017-01-04 16:15:12 +00:00
```
2017-08-11 17:05:39 +00:00
## Reporting bugs
You can report bugs in the public gitlab repository [here](https://git.project-insanity.org/onny/nextcloud-app-radio/issues) and for discussion you can find a section for the app in the offical Nextcloud forums [here](https://help.nextcloud.com/c/apps/radio).