Short links are overrated. Make them longer! https://incredibylongelongatedlinkservice.howmuchdoesthesims4cost.lol/
Find a file
nexy7574 29838b7046
All checks were successful
Build and Publish / build_and_publish (push) Successful in 22s
fix http basic requiring
2024-07-25 23:57:48 +01:00
.gitea/workflows Fix CI 2024-07-02 01:02:32 +01:00
src fix http basic requiring 2024-07-25 23:57:48 +01:00
.gitignore Initial commit 2024-06-03 18:17:39 +01:00
docker-compose.yml Fix "is not" vs "!=" 2024-07-11 18:58:38 +01:00
Dockerfile Add accounts system 2024-07-11 18:44:15 +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 Add accounts system 2024-07-11 18:44:15 +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