Skip to content

Commit

Permalink
added/fixed to readme and example config
Browse files Browse the repository at this point in the history
  • Loading branch information
pSpitzner committed Nov 17, 2024
1 parent 8d60bb4 commit 39cf568
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 2 deletions.
17 changes: 15 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
1 change: 1 addition & 0 deletions backend/beets_flask/config/config_bf_example.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 39cf568

Please sign in to comment.