Skip to content

Latest commit

 

History

History
26 lines (23 loc) · 544 Bytes

README.md

File metadata and controls

26 lines (23 loc) · 544 Bytes

SMOL

Simple Minimizer Of Links

A simple link shortener, written in Rust with actix-web Licence

Screenshots

Screenshot

Try it out

Current git master hosted -> here

Running with docker

version: '3'
services:
 smol:
   container_name: smol
   build:
     context: https://github.com/CUB3D/smol.git
   ports:
     - "8094:8080"
   environment:
     RUST_LOG: info
     DATABASE_URL: "<TODO>"
   restart: unless-stopped