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

bump to v2.2

Changed files
+4 -4
+3 -3
README.md
··· 8 9 ## How to Run 10 11 - ### From Docker: 12 13 ```bash 14 docker run -p 8080:8080 \ ··· 16 -e SIMPLELINK_USER=admin@example.com \ 17 -e SIMPLELINK_PASS=your-secure-password \ 18 -v simplelink_data:/data \ 19 - ghcr.io/waveringana/simplelink:v2.1 20 ``` 21 22 ### Environment Variables ··· 31 32 If `SIMPLELINK_USER` and `SIMPLELINK_PASS` are not passed, an admin-setup-token is pasted to the console and as a text file in the project root. 33 34 - ### From Docker Compose: 35 36 Edit the docker-compose.yml file. It comes included with a PostgreSQL db configuration. 37
··· 8 9 ## How to Run 10 11 + ### From Docker 12 13 ```bash 14 docker run -p 8080:8080 \ ··· 16 -e SIMPLELINK_USER=admin@example.com \ 17 -e SIMPLELINK_PASS=your-secure-password \ 18 -v simplelink_data:/data \ 19 + ghcr.io/waveringana/simplelink:v2.2 20 ``` 21 22 ### Environment Variables ··· 31 32 If `SIMPLELINK_USER` and `SIMPLELINK_PASS` are not passed, an admin-setup-token is pasted to the console and as a text file in the project root. 33 34 + ### From Docker Compose 35 36 Edit the docker-compose.yml file. It comes included with a PostgreSQL db configuration. 37
+1 -1
docker-compose.yml
··· 19 - shortener-network 20 21 app: 22 - image: ghcr.io/waveringana/simplelink:v2.1 23 container_name: shortener-app 24 ports: 25 - "8080:8080"
··· 19 - shortener-network 20 21 app: 22 + image: ghcr.io/waveringana/simplelink:v2.2 23 container_name: shortener-app 24 ports: 25 - "8080:8080"