Update README.md

This commit is contained in:
Samuel Newman
2026-02-16 12:51:38 +02:00
parent deda966b53
commit 47f917b716
+7
View File
@@ -6,6 +6,7 @@ To build the SPA bundle (`bundle.web.js`), first get a JavaScript development
environment set up. Either follow the top-level README, or something quick environment set up. Either follow the top-level README, or something quick
like: like:
```bash
# install nodejs # install nodejs
nvm install nvm install
nvm use nvm use
@@ -16,11 +17,15 @@ like:
# run yarn web dev server, if you wanted # run yarn web dev server, if you wanted
yarn web yarn web
```
Then build and copy over the big 'ol `bundle.web.js` file: Then build and copy over the big 'ol `bundle.web.js` file:
```bash
# in the top level of this repo # in the top level of this repo
yarn build-web yarn build-web
```
### Golang Daemon ### Golang Daemon
@@ -28,11 +33,13 @@ Install golang. We generally develop against the current stable release of the l
In this directory (`bskyweb/`): In this directory (`bskyweb/`):
```bash
# re-build and run daemon # re-build and run daemon
go run ./cmd/bskyweb serve go run ./cmd/bskyweb serve
# build and output a binary # build and output a binary
go build -o bskyweb ./cmd/bskyweb/ go build -o bskyweb ./cmd/bskyweb/
```
The easiest way to configure the daemon is to copy `example.env` to `.env` and The easiest way to configure the daemon is to copy `example.env` to `.env` and
fill in auth values there. fill in auth values there.