summaryrefslogtreecommitdiffstats
path: root/go/README
diff options
context:
space:
mode:
authortv <tv@nomic.retiolum>2014-01-06 00:02:01 +0100
committertv <tv@nomic.retiolum>2014-01-06 00:02:01 +0100
commit0afc64d121af21e8fa147acfc8419297a0a81d22 (patch)
treea3cfb4dbb3dc217f25c7614793098f5b844d77c1 /go/README
parent1fa549d013c6b1a628fdb7fa3aa7620696e71171 (diff)
go: README looks like markdown
Diffstat (limited to 'go/README')
-rw-r--r--go/README27
1 files changed, 0 insertions, 27 deletions
diff --git a/go/README b/go/README
deleted file mode 100644
index 17deb7d6..00000000
--- a/go/README
+++ /dev/null
@@ -1,27 +0,0 @@
-go - minimalistic uri shortener
-
-# installation
- npm install
-
- optionally
- npm install hiredis
-
-# run service
- HOSTN=go PORT=80 node .
-
- if you omit `HOSTN`, then relative shortened uris will be generated.
-
-# add uri
- curl -F uri=https://mywaytoolonguri http://go
-
- this will give you a shortened uri.
-
-# resolve uri
-
- curl -L http://go/1
-
-# clear database
-
- redis-cli keys 'go:*' | xargs redis-cli del
-
- if you have changed `redisPrefix`, then use that instead of `go:`.