Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@

- Added VM config validation before Lima template rendering for VM names, users, sizing,
code directories, host IPs, and port forwards.
- Internal: split `bin/dvm` into a small dispatcher plus sourced shell libraries under
`share/dvm/lib`.
- Added `dvm cp` to copy files between the host and a DVM VM through Lima, with
relative guest paths resolved under `DVM_CODE_DIR`.
- Fixed `dvm cp` without copy options on macOS Bash 3.2.
Expand Down
5 changes: 3 additions & 2 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
# Contributing

DVM is intentionally small. Keep the wrapper boring and put setup behavior in recipes
or docs unless the wrapper truly has to bridge host config to Lima.
DVM is intentionally small. Keep `bin/dvm` as a small dispatcher, put host-side wrapper
helpers in `share/dvm/lib`, and put setup behavior in recipes or docs unless the
wrapper truly has to bridge host config to Lima.

Good fits:

Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,9 @@ Install the wrapper:

This installs a small launcher into `~/.local/bin` and copies defaults into
`~/.config/dvm` without overwriting existing files. The launcher runs each invocation
from a temporary snapshot of `bin/dvm`, so editing or pulling this repo cannot corrupt a
long-running `dvm apply`. Bundled recipes, the Lima template, and example VM configs
stay in the repo under `share/dvm`.
from a temporary snapshot of `bin/dvm` and its shell libraries, so editing or pulling
this repo cannot corrupt a long-running `dvm apply`. Bundled recipes, the Lima
template, and example VM configs stay in the repo under `share/dvm`.

## Commands

Expand Down
Loading