An open API service indexing awesome lists of open source software.

https://github.com/cub3d/smol

SMOL: Simple Minimizer Of Links
https://github.com/cub3d/smol

actix-web link-shortener rust screenshots swagger

Last synced: 11 months ago
JSON representation

SMOL: Simple Minimizer Of Links

Awesome Lists containing this project

README

          

# SMOL
### Simple Minimizer Of Links
A simple link shortener, written in Rust with actix-web
![Licence](https://img.shields.io/github/license/CUB3D/smol)

### Screenshots
![Screenshot](./doc/screen.png)

### Try it out
Current git master hosted -> [here](https://s.cub3d.pw)

### Running with docker
```yaml
version: '3'
services:
smol:
container_name: smol
build:
context: https://github.com/CUB3D/smol.git
ports:
- "8094:8080"
environment:
RUST_LOG: info
DATABASE_URL: ""
restart: unless-stopped
```