summaryrefslogtreecommitdiffstats
path: root/go/README
blob: 0f9de490982906ef8597beb24367838a08043c20 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
go - minimalistic uri shortener

# installation
    npm install

  optionally
    npm install hiredis

# run service
    node .

# clear database

    redis-cli keys 'go:*' | xargs redis-cli del

  if you have changed `redisPrefix`, then use that instead of `go:`.