sanic/README.md

128 lines
2.9 KiB
Markdown
Raw Normal View History

[![maintained](https://img.shields.io/maintenance/yes/2024?style=flat-square)]()
![Gitea Release](https://img.shields.io/gitea/v/release/cccb/sanic?gitea_url=https%3A%2F%2Fgit.berlin.ccc.de&sort=semver&display_name=release&style=flat-square)
2023-10-16 19:05:11 +02:00
2024-01-22 13:10:30 +01:00
# 🦔 sanic
2023-10-16 18:39:08 +02:00
chaos music control inspired by [relaxx player][relaxx]
2024-01-22 13:10:30 +01:00
## ✨ Features
2023-10-16 18:39:08 +02:00
- mpd web gui
- search music
- organize playlists
- control current playback queue
- no authentication required to control music playback
2023-11-14 00:13:35 +01:00
- add playlists from internet radios (`*.m3u`, `*.pls`)
2024-01-22 13:10:30 +01:00
- add music from other sources like youtube (`youtube-dl`)
## 👩‍💻 Installation
### ❄️ NixOS (flakes)
Example flake setup (untested):
```nix
{
2024-04-06 18:57:43 +02:00
description = "Example Flake to install sanic on your host";
2024-01-29 22:22:40 +01:00
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable";
sanic = {
2024-08-07 23:35:16 +02:00
url = "gitlab.com/XenGi/sanic";
2024-01-29 22:22:40 +01:00
inputs.nixpkgs.follows = "nixpkgs";
};
};
outputs = { self, nixpkgs, sanic }:
let
system = "x86_64-linux";
pkgs = import nixpkgs { inherit system; };
in
{
2024-04-06 18:57:43 +02:00
nixosConfigurations."myhostname".nixpkgs.lib.nixosSystem = {
inherit system;
modules = [
{ environment.systemPackages = [ sanic.packages.${system}.default ]; }
];
};
};
}
```
### 🇦 Arch Linux
Install from the AUR:
2024-08-07 23:35:16 +02:00
```shell
yay -S sanic
```
2024-08-08 00:05:49 +02:00
### 🐳 Container
2024-08-07 23:35:16 +02:00
Run as daemon:
```shell
2024-08-08 00:05:49 +02:00
podman run -d -v ./config.ini:/config.ini -p 8080:8080 registry.gitlab.com/XenGi/sanic:latest
2024-08-07 23:35:16 +02:00
```
2024-01-22 13:10:30 +01:00
## 🛠️ Development
sanic is developed using [Nix][nix], but you can also just use the usual Golang tooling.
Run local [MPD][mpd] instance for testing with `make mpd`.
2024-08-08 00:05:49 +02:00
Update go dependencies like this:
2024-01-23 12:18:27 +01:00
```shell
go get -u # or `make update`
go mod tidy # or `make tidy`
2024-04-06 18:57:43 +02:00
gomod2nix # sync go deps with nix
2024-01-23 12:18:27 +01:00
```
2024-01-22 13:10:30 +01:00
### ❄️ w/ Nix
Enter development shell (also has [mpc][mpc] client installed for testing):
2023-10-16 18:39:08 +02:00
2024-01-22 13:10:30 +01:00
```shell
nix develop
```
2023-10-24 17:09:51 +02:00
2024-04-06 18:57:43 +02:00
Build sanic:
2023-10-24 17:09:51 +02:00
```shell
nix build
```
2024-01-22 13:10:30 +01:00
### 🐧 w/o Nix
2024-08-08 00:05:49 +02:00
Use these Make targets for your convenience:
2024-01-22 13:10:30 +01:00
- `run`: Run project
- `build`: Compile project
- `tidy`: Add missing and remove unused modules
- `verify`: Verify dependencies have expected content
2024-01-24 13:28:54 +01:00
- `format`: Format go code
- `lint`: Run linter (staticcheck)
2024-01-22 13:10:30 +01:00
- `test`: Run tests
- `cert`: Create https certificate for local testing
### 🐳 Container
You can run sanic in a container. Use these Make targets for convenience:
- `build-container`: Build container image
- `run-container`: Run container image
## 🗺️ Architecture
2023-11-07 19:57:49 +01:00
2024-08-08 10:07:20 +02:00
[![Architecture](https://gitlab.com/XenGi/sanic/-/raw/main/architecture.drawio.svg)](https://app.diagrams.net/?mode=gitlab.com#AXenGi%2Fsanic%2Fmain%2Farchitecture.drawio.svg)
2023-11-07 19:57:49 +01:00
2023-10-16 18:39:08 +02:00
---
2024-01-22 13:10:30 +01:00
Made with ❤️ and ![golang logo][golang].
2023-10-16 18:39:08 +02:00
[relaxx]: http://relaxx.dirk-hoeschen.de/
2024-01-22 13:10:30 +01:00
[nix]: https://nixos.org/manual/nix/stable/
[golang]: https://go.dev/images/favicon-gopher.svg
[mpd]: https://musicpd.org/
[mpc]: https://www.musicpd.org/clients/mpc/