A web client for MPD
Go to file
Sijmen c3b9e3fb72
Add version to release archive
2023-05-02 11:40:50 +02:00
screenshots Update screenshot 2023-05-01 17:03:00 +02:00
src URL encode paths 2023-05-02 11:04:08 +02:00
static Add drag-and-drop queue reordering 2023-05-02 00:39:28 +02:00
templates Add some more missing urlencodes 2023-05-02 11:40:18 +02:00
.dockerignore Add Dockerfile 2023-05-02 01:45:55 +02:00
.drone.yml Add version to release archive 2023-05-02 11:40:50 +02:00
.gitignore Add vendor licenses 2023-04-27 16:25:38 +02:00
Cargo.lock Bump version to 0.1.8 2023-05-02 11:04:46 +02:00
Cargo.toml Bump version to 0.1.8 2023-05-02 11:04:46 +02:00
Dockerfile Add Dockerfile 2023-05-02 01:45:55 +02:00
LICENSE.md Add license 2023-04-27 16:14:50 +02:00
README.md Add a couple of shields 2023-05-02 01:45:40 +02:00

README.md

Empede

Drone (self-hosted) Docker Image Size (latest semver) Crates.io

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