add install instructions for dev install (#228)
Signed-off-by: Florian Maurer <f.maurer@outlook.de>
This commit is contained in:
parent
22f67e2d4d
commit
4660f21b61
11
INSTALL.md
11
INSTALL.md
|
@ -25,6 +25,17 @@ As root:
|
||||||
go install github.com/FreifunkBremen/yanic@latest
|
go install github.com/FreifunkBremen/yanic@latest
|
||||||
```
|
```
|
||||||
|
|
||||||
|
or to install a different checkout for example for development run:
|
||||||
|
|
||||||
|
```sh
|
||||||
|
git clone https://github.com/FreifunkBremen/yanic
|
||||||
|
cd yanic
|
||||||
|
go install .
|
||||||
|
```
|
||||||
|
|
||||||
|
Now you can use the binary in `~/go/bin/yanic`.
|
||||||
|
If you specified `export GOPATH=/opt/go` the binary is located at `/opt/go/bin/yanic`.
|
||||||
|
|
||||||
#### Work with other databases
|
#### Work with other databases
|
||||||
If you like to use another database solution than influxdb, Pull Requests are
|
If you like to use another database solution than influxdb, Pull Requests are
|
||||||
welcome. Just fork this project and create another subpackage within the folder
|
welcome. Just fork this project and create another subpackage within the folder
|
||||||
|
|
|
@ -25,6 +25,14 @@ As root:
|
||||||
go install github.com/FreifunkBremen/yanic@latest
|
go install github.com/FreifunkBremen/yanic@latest
|
||||||
```
|
```
|
||||||
|
|
||||||
|
or to install a different checkout for example for development run:
|
||||||
|
|
||||||
|
```sh
|
||||||
|
git clone https://github.com/FreifunkBremen/yanic
|
||||||
|
cd yanic
|
||||||
|
go install .
|
||||||
|
```
|
||||||
|
|
||||||
### Install
|
### Install
|
||||||
|
|
||||||
```sh
|
```sh
|
||||||
|
|
Loading…
Reference in New Issue