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

Update README.md

Changed files
+3 -3
+3 -3
README.md
···
```bash
docker build --build-arg API_URL=http://localhost:8080 -t simplelink .
docker run -p 8080:8080 \
-
-e JWT_SECRET=change-me-in-production \
-
-e DATABASE_URL=postgres://user:password@host:port/database \
+
-e JWT_SECRET=change-me-in-production \
+
-v simplelink_data:/data \
simplelink
```
### From Docker Compose
-
Adjust the included docker-compose.yml to your liking, it includes a postgres config as well.
+
Adjust the included docker-compose.yml to your liking; it includes a postgres config as well.