Skip to content

Commit 2fda8e9

Browse files
committed
refactor: rename setup-vm.sh to bootstrap-dev-environment.sh
Clarifies that this script sets up a dev environment for working on Hypeman, not a VM running inside Hypeman.
1 parent b54eb7e commit 2fda8e9

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

scripts/utm/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ Follow the [official UTM Ubuntu guide](https://docs.getutm.app/guides/ubuntu/):
3232
1. Hardware: Set RAM to **8192 MiB** and CPU cores to **4**
3333
1. Linux: check the box to **Use Apple Virtualization**. **Boot from ISO** should be the default. Click **Browse** and select the Ubuntu Server ISO.
3434
1. Storage: Set disk size to **100 GiB**
35-
1. Shared Directory: skip this. The `setup-vm.sh` script will clone Hypeman onto the VM.
35+
1. Shared Directory: skip this. The `bootstrap-dev-environment.sh` script will clone Hypeman onto the VM.
3636
1. Summary: Name the VM **Hypeman** and click **Save**
3737

3838
**Important:** Before starting the VM:
@@ -91,12 +91,12 @@ ssh hypeman
9191

9292
## Setting up the VM for Hypeman Development
9393

94-
Copy the `setup-vm.sh` script into the VM and run it:
94+
Copy the `bootstrap-dev-environment.sh` script into the VM and run it:
9595

9696
```bash
97-
scp setup-vm.sh hypeman:
97+
scp bootstrap-dev-environment.sh hypeman:
9898
ssh hypeman
99-
./setup-vm.sh
99+
./bootstrap-dev-environment.sh
100100
```
101101

102102
This installs Go, erofs-utils, dnsmasq, and other dependencies needed for Hypeman.
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# Provision the VM with Hypeman dependencies
44
#
55
# Run this script ON the VM (after SSHing in), or from your Mac:
6-
# ssh hypeman 'bash -s' < setup-vm.sh
6+
# ssh hypeman 'bash -s' < bootstrap-dev-environment.sh
77
#
88

99
set -e

0 commit comments

Comments
 (0)