Convert all howtos to use pear run --dev (#152)

This commit is contained in:
Sean Zellmer
2024-10-22 08:06:18 -05:00
committed by GitHub
parent 174dcce808
commit 706f396a5d
6 changed files with 22 additions and 22 deletions

View File

@@ -127,11 +127,11 @@ for (const key of otherKeys) {
}
```
In one terminal, open `multicore-writer-app` with `pear dev`.
In one terminal, open `multicore-writer-app` with `pear run --dev .`.
```
cd multicore-writer-app
pear dev
pear run --dev .
```
The `multicore-writer-app` will output the main core key.
@@ -140,7 +140,7 @@ In another terminal, open the `multicore-reader-app` and pass it the key:
```
cd multicore-reader-app
pear dev . <SUPPLY THE KEY HERE>
pear run --dev . <SUPPLY THE KEY HERE>
```
As inputs are made to the terminal running the writer application, outputs should be shown in the terminal running the reader application.