comparison docs/DEVELOPMENT.md @ 4466:70444dce0b31

Suggest usage of Go 1.13+.
author Sascha L. Teichmann <sascha.teichmann@intevation.de>
date Mon, 23 Sep 2019 15:37:19 +0200
parents aaab0ebde623
children
comparison
equal deleted inserted replaced
4465:0ad75dd3d77c 4466:70444dce0b31
18 to enable syntax highlighting. 18 to enable syntax highlighting.
19 19
20 20
21 ## Backend 21 ## Backend
22 22
23 You need a working [Go](https://golang.org/dl) build environment (1.10+). 23 You need a working [Go](https://golang.org/dl) build environment (1.13+).
24 24
25 * Install dependencies 25 * Install dependencies
26 26
27 `sh 3rdpartylibs` 27 `sh 3rdpartylibs`
28 28
49 `godoc -http=:6060` 49 `godoc -http=:6060`
50 you can access the documentation at 50 you can access the documentation at
51 `http://localhost:6060/pkg/gemma.intevation.de/?m=all` 51 `http://localhost:6060/pkg/gemma.intevation.de/?m=all`
52 52
53 Hints: 53 Hints:
54 * A parameter like `-goroot /usr/lib/go-1.12` may avoid warnings, if 54 * A parameter like `-goroot /usr/lib/go-1.13` may avoid warnings, if
55 the goroot is somewhere else. 55 the goroot is somewhere else.
56 * Clicking on a function declaration header will take you to the source 56 * Clicking on a function declaration header will take you to the source
57 code. (Or changing `?m=all` to `?m=src?`). 57 code. (Or changing `?m=all` to `?m=src?`).
58 58
59 59