Remove go-bindata mention from dev setup docs

No longer needed as of writefreely/writefreely#610 (v0.14)
This commit is contained in:
Matt Baer 2024-02-02 16:40:05 +01:00
parent b75520fdab
commit 638e027cf3

View File

@ -30,14 +30,6 @@ git clone https://github.com/writefreely/writefreely.git
cd writefreely
```
Next, install the bindata generator and create `bindata.go` (needed for a successful build).
```bash
GOPATH=${GOPATH:-$HOME/go/bin}
go install github.com/jteeuwen/go-bindata/go-bindata
${GOPATH}/go-bindata -pkg writefreely -ignore=\\.gitignore schema.sql sqlite.sql
```
Finally, build the `writefreely` binary with SQLite support. (Remove `-tags='sqlite'` if you don't need SQLite support.)
```bash