shlonk

Crates.ioshlonk
lib.rsshlonk
version0.1.11
sourcesrc
created_at2023-06-29 11:05:55.407558
updated_at2023-12-29 11:43:17.264118
descriptionA simple URL shortener
homepagehttps://github.com/tarneaux/shlonk
repositoryhttps://github.com/tarneaux/shlonk
max_upload_size
id903181
size69,228
tarneo (tarneaux)

documentation

README

Shlonk - A simple, fast, URL shortener

Shlink is another self-hosted URL shortener. Though it does too much: it has a REST API, a web GUI, and many other features you are probably never going to use.

Shlonk tries to do only one thing, redirect clients to other sites, and does it well with its Yaml configuration file. Here's an example:

urls:
  home: # /home redirects to...
    url: https://git.renn.es/shlonk
  example: # /example redirects to...
    url: https://example.com/
    permanent: true
port: 8080 # Default value
address: 0.0.0.0 # Default value

To launch Shlonk, write this config to a file, say config.yml, and then run:

shlonk -c ./config.yml

That's it. That's the documentation for Shlonk. And guess what: the code is less than 200 lines long.

Installation

Cargo:

cargo install shlonk

Docker installation

See the example docker-compose.

Why the name?

It is a variation on Shlink, and here is a definition from the urban dictionary:

V. To do anything.

Shlonking is a lifestyle choice, a way to express how much better you are than any person who doesn't shlonk the same way you do. Use it as a replacement for any verb in the hopes that more individuals realize the importance of gang shlonk.

I just had to choose that name.

Commit count: 39

cargo fmt