/gull

🐦 A simple, modern URL shortener in Go

Primary LanguageGoMozilla Public License 2.0MPL-2.0

gull

A simple URL shortener made in Go screenshot

Usage

Docker

Pull the image and run.

docker run -d --name gull -v /gull-data/:/data/ -p 8081:8081 aeolyus/gull:latest

This will preserve any persistent data under /gull-data/. Change this as needed.

From Source

git clone https://github.com/aeolyus/gull.git
cd ./gull
go get -d -v ./...
go run server.go

This will create a directory ./gull/data where persistent data will be stored.

Acknowledgements

Inspired by mnml!