Error while getting started with Trellis and Lima on Mac

I’m trying to a new project running with Trellis and lima on mac, but I’m getting the following error.

I run:

trellis new example.com

cd example.com

trellis vm start

And I get this error:

Running command => limactl create --tty=false --name=example.com -
INFO[0000] Terminal is not available, proceeding without opening an editor 
INFO[0000] Attempting to download the image              arch=aarch64 digest= location="https://cloud-images.ubuntu.com/noble/current/noble-server-cloudimg-arm64.img"
INFO[0000] Using cache "/Users/danadams/Library/Caches/lima/download/by-url-sha256/7c8e4507222e57734b580a24bf30b7828afaae43c2f040f6e0977f45669ce961/data" 
INFO[0000] Converting "/Users/danadams/.lima/example.com/basedisk" (qcow2) to a raw disk "/Users/danadams/.lima/example.com/diffdisk" 
3.50 GiB / 3.50 GiB [---------------------------------------] 100.00% 1.15 GiB/s
INFO[0003] Expanding to 100GiB                          
INFO[0003] Run `limactl start example.com` to start the instance. 
Running command => limactl start example.com
FATA[0000] open /Users/danadams/Documents/Newsqauwk/example.com/trellis/example.com: no such file or directory 
Error starting VM.
exit status 1

Thanks for the topic, just confirmed after upgrading to the latest Lima (v1.1.0+) that I’m running into this as well

For now, you’ll need to downgrade Lima to get up and running. Homebrew makes this quite difficult, but follow these steps and you should be good:

# First uninstall the current version
brew uninstall lima

# Download the formula file for Lima v1.0.7
curl -O https://raw.githubusercontent.com/Homebrew/homebrew-core/a3d33e158ed14a48cf60dfd34d15a1acd276d72a/Formula/l/lima.rb

# Install from the local file
HOMEBREW_NO_AUTO_UPDATE=1 brew install ./lima.rb

# Clean up the downloaded file
rm lima.rb

Also see Use `--name` flag when calling `limactl start` · Issue #548 · roots/trellis-cli · GitHub