INSTALL | 30 ++++++++++++++++++++++++++++++ go.mod | 3 +++ diff --git a/INSTALL b/INSTALL new file mode 100644 index 0000000000000000000000000000000000000000..b1019877a076fc11baf24068998d49ff5eeb154d242a434651ebd071101ff8a5 --- /dev/null +++ b/INSTALL @@ -0,0 +1,30 @@ +There are several installation possibilities: + +* using go get (although there is no explicit authentication against my + public PGP key!): + + $ go get go.cypherpunks.ru/gocheese + + will install gocheese executable in GOPATH/bin/gocheese. + +* using manual build: + + $ git clone https://git.cypherpunks.ru/git/gocheese.git + or + $ git clone git://git.cypherpunks.ru/gocheese.git + $ cd gocheese + $ git tag -v v1.0.0 + $ go build + + will place gocheese executable in ./gocheese. + +For the very first time it is necessary to get signing public key and +import it for verifying git's tag. Its fingerprint is: + + CF60 E89A 5923 1E76 E263 6422 AE1A 8109 E498 57EF + +You can locate it using: + + $ gpg --auto-key-locate dane --locate-keys stargrave at stargrave dot org + $ gpg --auto-key-locate wkd --locate-keys stargrave at stargrave dot org + $ gpg --auto-key-locate wkd --locate-keys stargrave at gnupg dot net diff --git a/go.mod b/go.mod new file mode 100644 index 0000000000000000000000000000000000000000..2495b145f2e00aa1863153e93aac523ae9caf076ddee6e8c6375a539033d8bac --- /dev/null +++ b/go.mod @@ -0,0 +1,3 @@ +module go.cypherpunks.ru/gocheese + +go 1.12