update developing instructions

pull/5/head
cblgh 2021-11-01 09:32:54 +01:00
rodzic 4f0b90d083
commit 2bd178180c
2 zmienionych plików z 16 dodań i 1 usunięć

Wyświetl plik

@ -42,6 +42,7 @@ for easy inspection of the data. You typically want to redirect their output to
the files Lieu reads from, as defined in the config file. See below for a
typical workflow.
### Workflow
* Edit the config
@ -109,6 +110,20 @@ The following config-defined files can stay as-is unless you have specific requi
For a full rundown of the files and their various jobs, see the [files
description](docs/files.md).
## Developing
Build a binary:
```sh
# this project has an experimental fulltext-search feature, so we need to include sqlite's fts engine (fts5)
go build --tags fts5
# or using go run
go run --tags fts5 .
```
Create new release binaries:
```sh
./release.sh
```
### License
Source code `AGPL-3.0-or-later`, Inter is available under `SIL OPEN FONT

Wyświetl plik

@ -1,6 +1,6 @@
#!/bin/bash
for os in windows linux darwin openbsd
for os in linux darwin openbsd
do
executable="lieu"
if [ $os = "windows" ]; then