Short links are overrated. Make them longer! https://incredibylongelongatedlinkservice.howmuchdoesthesims4cost.lol/
Find a file
2024-07-11 17:08:48 +01:00
.gitea/workflows Forgejo doesn't support GITHUB_TOKEN </3 2024-06-03 18:22:28 +01:00
src Change default slug length to 1000 2024-07-11 17:08:48 +01:00
.gitignore Initial commit 2024-06-03 18:17:39 +01:00
docker-compose.yml Initial commit 2024-06-03 18:17:39 +01:00
Dockerfile Initial commit 2024-06-03 18:17:39 +01:00
LICENSE Initial commit 2024-06-03 18:17:39 +01:00
README.md Initial commit 2024-06-03 18:17:39 +01:00
requirements.txt Initial commit 2024-06-03 18:17:39 +01:00

Link Elongater

Short links are overrated. Make them longer!

services:
    web:
        build: git.i-am.nexus/nex/link-elongater:latest
        ports:
            - "8000:80"
        environment:
            - DATABASE_URL=postgres://elongate:elongate@db:5432/elongate
        depends_on:
            - db
    db:
        image: postgres
        restart: always
        environment:
            POSTGRES_PASSWORD: elongate
            POSTGRES_USER: elongate
            POSTGRES_DB: elongate
        volumes:
            - ./pgdata:/var/lib/postgresql/data