From: Sergey Matveev Date: Wed, 2 Oct 2019 08:45:51 +0000 (+0300) Subject: Initial module support X-Git-Tag: v1.0.0 X-Git-Url: http://www.git.cypherpunks.ru/?p=gocheese.git;a=commitdiff_plain;h=refs%2Ftags%2Fv1.0.0 Initial module support --- diff --git a/INSTALL b/INSTALL new file mode 100644 index 0000000..51d1ff2 --- /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 0000000..07c0715 --- /dev/null +++ b/go.mod @@ -0,0 +1,3 @@ +module go.cypherpunks.ru/gocheese + +go 1.12