···66environment set up. Either follow the top-level README, or something quick
77like:
8899- # install nodejs
1010- nvm install
1111- nvm use
1212- npm install --global yarn
99+```bash
1010+# install nodejs
1111+nvm install
1212+nvm use
1313+npm install --global yarn
13141414- # setup tools and deps (in top level of this repo)
1515- yarn install --frozen-lockfile
1515+# setup tools and deps (in top level of this repo)
1616+yarn install --frozen-lockfile
16171717- # run yarn web dev server, if you wanted
1818- yarn web
1818+# run yarn web dev server, if you wanted
1919+yarn web
2020+```
19212022Then build and copy over the big 'ol `bundle.web.js` file:
21232222- # in the top level of this repo
2323- yarn build-web
2424+2525+```bash
2626+# in the top level of this repo
2727+yarn build-web
2828+```
24292530### Golang Daemon
2631···28332934In this directory (`bskyweb/`):
30353131- # re-build and run daemon
3232- go run ./cmd/bskyweb serve
3636+```bash
3737+# re-build and run daemon
3838+go run ./cmd/bskyweb serve
33393434- # build and output a binary
3535- go build -o bskyweb ./cmd/bskyweb/
4040+# build and output a binary
4141+go build -o bskyweb ./cmd/bskyweb/
4242+```
36433744The easiest way to configure the daemon is to copy `example.env` to `.env` and
3845fill in auth values there.