It's a simple project that can shorten ("beautify") URLs. It's written using ASP.NET Core 7.0
Used projects:
- Redis: DB. redis.io
- qrcode.js: generating qr codes on frontend. davidshimjs.github.io
To deploy this service yourself:
- Prepare a machine with Docker installed
- Create a Docker Compose file (e.g.,
docker-compose.yml
):
version: "3"
services:
redis:
image: "redis:latest"
restart: always
volumes:
- redis_links_data:/data
linkpulse:
image: "max05643/linkpulse:latest"
ports:
- "80:5000"
depends_on:
- redis
environment:
- ConnectionStrings__redis=redis:6379
- Shortener__ExpirationTimeSeconds=3600
- Shortener__ExpandExpirationTimeOnEveryUse=true
volumes:
redis_links_data:
Use Shortener__ExpirationTimeSeconds
to specify the time in seconds for one shortened url to exist.
Use Shortener__ExpandExpirationTimeOnEveryUse
to specify whether storage time for the shortened url should be reset on every usage.
- Run
docker-compose up
in your terminal to start the bot and Redis Server containers.