Link shortener is an implementation of the hexagonal architecture using Go, MongoDB and Redis.
export URL_DB=redis
export REDIS_URL=redis://localhost:6379
go run .
export URL_DB=mongo
export MONGO_URL=mongodb://localhost/shortener
export MONGO_DB=shortener
export MONGO_TIMEOUT=30
go run .