Skip to content

Latest commit

 

History

History
executable file
·
32 lines (28 loc) · 870 Bytes

File metadata and controls

executable file
·
32 lines (28 loc) · 870 Bytes

Install Lyrics App

Download from release page

custom build

git clone https://github.com/likeaixxx/lyrics.git
cd lyrics
xcodebuild -project Lyrics.xcodeproj -scheme "Lyrics" -configuration Release

Open the build folder and copy the app to the Applications directory

Setup server with docker

Require a database file:

mkdir ~/lyrics && touch ~/lyrics/lyrics.db
  1. docker: docker run --name lyrics -d -p 8331:8331 -v ~/lyrics/lyrics.db:/app/lyrics.db likeai1111/lyrics:latest
  2. docker compose:
name: lyrics
services:
    lyrics:
        image: likeai1111/lyrics:latest
        container_name: lyrics
        volumes:
            - ~/lyrics/lyrics.db:/app/lyrics.db
        restart: unless-stopped

Acknowledgements

LyricFever