A very performant and light (2mb in memory) link shortener and tracker. Written in Rust and React and uses Postgres/SQLite.
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Bump

+2 -4
+1 -1
README.md
··· 14 docker run -p 8080:8080 \ 15 -e JWT_SECRET=change-me-in-production \ 16 -v simplelink_data:/data \ 17 - simplelink 18 ``` 19 20 Find the admin-setup-token pasted into the terminal output, or in admin-setup-token.txt in the container's root.
··· 14 docker run -p 8080:8080 \ 15 -e JWT_SECRET=change-me-in-production \ 16 -v simplelink_data:/data \ 17 + ghcr.io/waveringana/simplelink:v1.0.2 18 ``` 19 20 Find the admin-setup-token pasted into the terminal output, or in admin-setup-token.txt in the container's root.
+1 -3
docker-compose.yml
··· 19 - shortener-network 20 21 app: 22 - build: 23 - context: . 24 - dockerfile: Dockerfile 25 container_name: shortener-app 26 ports: 27 - "8080:8080"
··· 19 - shortener-network 20 21 app: 22 + image: ghcr.io/waveringana/simplelink:v1.0.2 23 container_name: shortener-app 24 ports: 25 - "8080:8080"