A web client for MPD
Go to file
Sijmen 2c248dcaa0
continuous-integration/drone/push Build is passing Details
Update README for Windows
2023-04-28 12:49:07 +02:00
screenshots Convert screenshot to webp [ci skip] 2023-04-28 00:54:36 +02:00
src Allow for setting the bind address 2023-04-28 00:33:13 +02:00
static Allow full navigation using tab 2023-04-27 21:17:26 +02:00
templates Allow full navigation using tab 2023-04-27 21:17:26 +02:00
.drone.yml Add Windows builds 2023-04-28 12:34:26 +02:00
.gitignore Add vendor licenses 2023-04-27 16:25:38 +02:00
Cargo.lock Version bump 2023-04-28 01:25:59 +02:00
Cargo.toml Version bump 2023-04-28 01:25:59 +02:00
LICENSE.md Add license 2023-04-27 16:14:50 +02:00
README.md Update README for Windows 2023-04-28 12:49:07 +02:00

README.md

Empede

A web client for MPD.

Screenshot

Configuration

Empede is configured using environment variables:

Name Default Description
MPD_HOST localhost MPD server host
MPD_PORT 6600 MPD server port
EMPEDE_BIND 0.0.0.0:8080 Address for Empede to bind to

Running

Linux

  1. Download and extract the latest release
  2. Run ./empede (To specify a host and port, run MPD_HOST=ip MPD_PORT=6600 ./empede)
  3. Go to http://localhost:8080

Windows

  1. Download and extract the latest release
  2. Run .\empede in a PowerShell (To specify a host and port, first set the $env:MPD_HOST and $env:MPD_PORT variables)
  3. Go to http://localhost:8080

Building from source

  1. Make sure Rust is installed (https://rustup.rs/)
  2. Run cargo run (To specify a host and port, run MPD_HOST=ip MPD_PORT=6600 cargo run)
  3. Go to http://localhost:8080