diff options
Diffstat (limited to 'go/README.markdown')
-rw-r--r-- | go/README.markdown | 12 |
1 files changed, 3 insertions, 9 deletions
diff --git a/go/README.markdown b/go/README.markdown index 2d4ba909..22b7c642 100644 --- a/go/README.markdown +++ b/go/README.markdown @@ -12,30 +12,24 @@ ## run service - HOSTN=go PORT=80 URI_PREFIX=http://go node . + PORT=80 node . - if you omit `HOSTN`, then relative shortened uris will be generated. if you omit `PORT`, then it's `1337`. - if you omit `URI_PREFIX`, then it will be generated from `HOSTN` änd `PORT`. there's also the possibility to change the Redis key prefix which defaults to `go:` with REDIS_KEY_PREFIX=foobarmyprefix/ - to generate slightly more informative shortened uris set - - NOT_SO_SHORT=true - ## add uri - curl -F uri=https://mywaytoolonguri http://go + curl -F uri=https://mywaytoolonguri http://localhost:1337 this will give you a shortened uri. ## resolve uri - curl -L http://go/1 + curl -L http://localhost:1337/1 ## clear database |