https://github.com/benignware/wp-raudio
Webradioplayer for Wordpress
https://github.com/benignware/wp-raudio
Last synced: 11 months ago
JSON representation
Webradioplayer for Wordpress
- Host: GitHub
- URL: https://github.com/benignware/wp-raudio
- Owner: benignware
- Created: 2022-02-10T18:56:12.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2022-03-23T21:30:09.000Z (over 4 years ago)
- Last Synced: 2023-08-12T18:38:05.062Z (almost 3 years ago)
- Language: PHP
- Size: 33.2 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# wp-raudio
Webradio player for Wordpress
## Development
Download [Docker CE](https://www.docker.com/get-docker) for your OS.
### Dev Server
Point terminal to your project root and start up the container.
```shell
docker-compose up -d
```
Open http://localhost:8030 and go through Wordpress installation.
Go to plugins page and enable Raudio plugin.
You find phpMyAdmin at http://localhost:8031
### Update composer dependencies
```shell
docker-compose run composer update
```
### Useful docker commands
Globally stop all running docker containers.
```shell
docker stop $(docker ps -a -q)
```