kutt
kutt copied to clipboard
Free Modern URL Shortener.
Hello, I'm running Kutt in a docker container and loving it! However, after doing some development with the API, I've filled my database with hundreds and hundreds of shortened links....
Configurations docker-compose ```yml kutt: image: kutt/kutt:latest restart: always depends_on: - postgresql - redis-kutt command: ["./wait-for-it.sh", "postgresql:5432", "--", "npm", "start"] environment: - SITE_NAME= - DEFAULT_DOMAIN=link.patchli.fr - CUSTOM_DOMAIN_USE_HTTPS=true - PORT=3000 # Postgres...
Hi, I know due to compability the limitation makes sense but we want to use kutt for service urls which encode their config in the urls (e.g. kibana). Hence urls...
Issue: https://github.com/thedevs-network/kutt/issues/717 Based on https://github.com/redis/ioredis#tls-options
Hey, Following the previous aborted [try](https://github.com/thedevs-network/kutt/pull/597) to implement the `/metrics/` route, this pull request brings this feature. Added metrics - [x] Default Node.js metrics - [x] Histogram about response duration...
Adds `ready` as healthy redis status
This fixes #689 The Mail setup was mandatory, so this makes the project not flexible, some people might want to use it and deploy it without email confirmation of the...
next.config.js is using `require("dotenv").config();` - but there is no .env inside the container! The .env is outside the container when using docker-compose. Documentation says nothing about this. I've added an...
I added a variable to set the target length as env variable, I have a use case were the length of the target is more than 2040
There is an extremely important bit of information in the Docker .env section that's surprisingly missing. You see, the most common use case for this app is to be able...