Compare commits

...

2 Commits

Author SHA1 Message Date
Chris Wanstrath
265611d8c4 test 2025-09-26 11:36:42 -07:00
Chris Wanstrath
ec7ae3b74a have fun 2025-09-26 11:35:56 -07:00
2 changed files with 14 additions and 4 deletions

View File

@ -2,14 +2,24 @@
## Installation
You just need to make a "nose" user on your RPi and make sure you can ssh in.
1. Make a fresh RPi image with a "nose" user.
Then run `bun remote:install`.
2. Clone this repo
When it's done (it'll reboot) visit:
3. From the root of this repo, run:
bun remote:install`
4. When it's done (it'll reboot) visit:
http://nose-pluto.local
And to make sure DNS is working:
http://ping.nose-pluto.local/
5. Have fun!
## Local Dev
bun install

View File

@ -1,3 +1,3 @@
export default function (name: string): string {
return `Hi, ${name || "stranger"}!`
return `Hi, ${name || "stranger"}!!`
}