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

update readme

Changed files
+19
+19
README.md
··· 6 6 7 7 ![StatsView](readme_img/statview.jpg) 8 8 9 + ## How to Run 10 + 11 + ### From Docker: 12 + 13 + ```Bash 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. 21 + 22 + This is needed to register with the frontend. (TODO, register admin account with ENV) 23 + 24 + ### From Docker Compose: 25 + 26 + Edit the docker-compose.yml file. It comes included with a postgressql db for use 27 + 9 28 ## Build 10 29 11 30 ### From Source