]> Cypherpunks.ru repositories - gocheese.git/commitdiff
Initial module support v1.0.0
authorSergey Matveev <stargrave@stargrave.org>
Wed, 2 Oct 2019 08:45:51 +0000 (11:45 +0300)
committerSergey Matveev <stargrave@stargrave.org>
Fri, 4 Oct 2019 13:09:08 +0000 (16:09 +0300)
INSTALL [new file with mode: 0644]
go.mod [new file with mode: 0644]

diff --git a/INSTALL b/INSTALL
new file mode 100644 (file)
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 (file)
index 0000000..07c0715
--- /dev/null
+++ b/go.mod
@@ -0,0 +1,3 @@
+module go.cypherpunks.ru/gocheese
+
+go 1.12