From 9946c7d9110635c635a9e533ae42a4a3ea6176b7 Mon Sep 17 00:00:00 2001 From: Axel Wagner Date: Tue, 27 Dec 2016 16:39:09 +0100 Subject: [PATCH] Update building instructions (#58) -insecure shouldn't be needed anymore (the server now runs letsencrypt). Also document nfc-less mode. --- README.md | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index e575a87..960cbbd 100644 --- a/README.md +++ b/README.md @@ -12,7 +12,7 @@ install it and start testing. Currently you need to install libnfc to build kasse. This will not be needed in the future. In Debian you need to install the following packages: -- libnfc-dev +- libnfc-dev (not required for testing) - sqlite3 - golang @@ -21,7 +21,10 @@ The following will build the code and give you a basic environment to run kasse: ``` export GOROOT=$HOME/go export PATH=$PATH:$GOROOT/bin -go get -insecure -u github.com/nnev/kasse` +# If you don't want/need support for the NFC Reader (e.g. for testing), run +go get -u github.com/nnev/kasse +# otherwise run instead: +go get -tags nonfc -u github.com/nnev/kasse cd ~/go/src/github.com/nnev/kasse && sqlite3 kasse.sqlite < schema.sql ```