Skip to content

Commit

Permalink
Update building instructions (#58)
Browse files Browse the repository at this point in the history
-insecure shouldn't be needed anymore (the server now runs letsencrypt). Also document nfc-less mode.
  • Loading branch information
Merovius authored and koebi committed Dec 27, 2016
1 parent eb2ff7b commit 9946c7d
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand All @@ -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
```

Expand Down

0 comments on commit 9946c7d

Please sign in to comment.