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
···
## How to Run
-
### From Docker:
```bash
docker run -p 8080:8080 \
···
-e SIMPLELINK_USER=admin@example.com \
-e SIMPLELINK_PASS=your-secure-password \
-v simplelink_data:/data \
-
ghcr.io/waveringana/simplelink:v2.1
```
### Environment Variables
···
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.
-
### From Docker Compose:
Edit the docker-compose.yml file. It comes included with a PostgreSQL db configuration.
···
## How to Run
+
### From Docker
```bash
docker run -p 8080:8080 \
···
-e SIMPLELINK_USER=admin@example.com \
-e SIMPLELINK_PASS=your-secure-password \
-v simplelink_data:/data \
+
ghcr.io/waveringana/simplelink:v2.2
```
### Environment Variables
···
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.
+
### From Docker Compose
Edit the docker-compose.yml file. It comes included with a PostgreSQL db configuration.
+1 -1
docker-compose.yml
···
- shortener-network
app:
-
image: ghcr.io/waveringana/simplelink:v2.1
container_name: shortener-app
ports:
- "8080:8080"
···
- shortener-network
app:
+
image: ghcr.io/waveringana/simplelink:v2.2
container_name: shortener-app
ports:
- "8080:8080"