Mirror of sanic. Find the original here: https://gitlab.com/XenGi/sanic https://sanic.club.berlin.ccc.de
Go to file
2024-01-24 13:23:54 +01:00
.forgejo/workflows Delete .forgejo/dependabot.yml 2023-11-24 11:15:25 +01:00
static static: flexbox: treeview.css: use directory unicode symbols 2024-01-23 23:43:08 +01:00
.editorconfig foo 2023-10-24 18:17:36 +02:00
.gitignore foo 2023-11-06 22:38:39 +01:00
architecture.drawio.svg Update architecture.drawio.svg 2023-11-07 20:09:13 +01:00
cert.pem add http/2 and tls 2023-11-07 21:16:42 +01:00
config.ini stylish readme 2024-01-22 13:10:30 +01:00
Dockerfile add container and go stuff 2024-01-22 12:37:28 +01:00
favicon.xcf add mpd status messages 2023-12-10 21:33:54 +01:00
flake.lock slim down flake 2024-01-24 13:22:22 +01:00
flake.nix slim down flake 2024-01-24 13:22:22 +01:00
go.mod update go deps 2024-01-23 12:16:08 +01:00
go.sum update go deps 2024-01-23 12:16:08 +01:00
gomod2nix.toml update go deps 2024-01-23 12:16:08 +01:00
key.pem add http/2 and tls 2023-11-07 21:16:42 +01:00
LICENSE Initial commit 2023-10-16 17:42:09 +02:00
Makefile add go fmt to Make 2024-01-24 13:23:54 +01:00
mpd.conf add mpd config 2023-10-18 00:40:17 +02:00
mpd.go gui functions nearly done 2023-12-30 15:02:13 +01:00
NOTES.md update roadmap 2024-01-23 12:16:21 +01:00
README.md update docs 2024-01-23 12:18:27 +01:00
server.go moving design to final files 2024-01-20 11:40:13 +01:00

maintained

🦔 sanic

chaos music control inspired by relaxx player

Features

  • mpd web gui
    • search music
    • organize playlists
    • control current playback queue
  • no authentication required to control music playback
  • add playlists from internet radios (*.m3u, *.pls)
  • add music from other sources like youtube (youtube-dl)

🛠️ Development

sanic is developed using Nix, but you can also just use the usual Golang tooling.

Run local MPD instance for testing with make mpd.

Update go depdendencies like this:

go get -u  # or `make update`
go mod tidy  # or `make tidy`
gomod2nix

❄️ w/ Nix

Enter development shell (also has mpc client installed for testing):

nix develop

Build nix flake:

nix build

🐧 w/o Nix

Use these Make targets for convenience:

  • run: Run project
  • build: Compile project
  • tidy: Add missing and remove unused modules
  • verify: Verify dependencies have expected content
  • 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

Architecture


Made with ❤️ and golang logo.