Compare commits

..

No commits in common. "265611d8c4bb7441177f5f417388dceef0b5a4c0" and "8d23a77ddca2132199460b62404b04ef54e54aca" have entirely different histories.

2 changed files with 4 additions and 14 deletions

View File

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

View File

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