From 39cf5684f3dc5f32f00158289fd851b496a592ab Mon Sep 17 00:00:00 2001 From: pSpitzner Date: Sun, 17 Nov 2024 15:29:35 +0100 Subject: [PATCH] added/fixed to readme and example config --- README.md | 17 +++++++++++++++-- .../beets_flask/config/config_bf_example.yaml | 1 + 2 files changed, 16 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 1ca8f5e..3abe789 100644 --- a/README.md +++ b/README.md @@ -162,12 +162,25 @@ We appriciate any help! If you want to contribute, here is how to get started: - For platform agnostic development, login to the container and install dependencies: ```bash -docker exec -it beets-flask bash -cd /repo/backend +docker exec -it beets-flask-dev bash +cd /repo/frontend + pnpm install pnpm run dev ``` The frontend is served at `http://localhost:5173` +If you are having issues installing dependencies with pnpm, try: + +```bash +rm -rf /repo/frontend/node_modules +rm -rf /repo/frontend/dist +rm -rf /repo/.pnpm-store +pnpm store prune + +# and/or reset the lockfile +rm -rf /frontend/pnpm-lock.json +``` + See also [Resources.md](./RESOURCES.md) for some background information and design choices. diff --git a/backend/beets_flask/config/config_bf_example.yaml b/backend/beets_flask/config/config_bf_example.yaml index 2647ca0..4d325c0 100644 --- a/backend/beets_flask/config/config_bf_example.yaml +++ b/backend/beets_flask/config/config_bf_example.yaml @@ -17,6 +17,7 @@ gui: expand_tags: yes # for tag groups, on page load, show tag details? recent_days: 14 # Number of days to consider for the "recent" tag group order_by: "name" # how to sort tags within the trag groups: "name" (the album folder basename) | "date_created" | "date_modified" + show_unchanged_tracks: no # whether to show even unchanged tracks in the preview (interactve import sessions) terminal: start_path: "/music/inbox" # the directory where to start new terminal sessions