A minimal, self hosted read it later app written powered by Vue/Tailwind and Go.
1.8K
A minimal, self hosted read it later app written powered by Vue/Tailwind and Go. All documents are stored as markdown files in a shared volume and tracked by the backend in a SQLLite database. Why make this? Because Pocket screwed me over one too many times.
|
|
version: '3.8'
services:
frontend:
image: "gjames8/readr-frontend:latest"
ports:
- "8080:8080"
container_name: frontend
backend:
image: "gjames8/readr-backend:latest"
ports:
- "3000:3000"
container_name: backend
volumes:
- ./data:/app/data
Yeah it probably would have been easier to just save them as HTML files but I have a script that syncs these with my obsidian vault, so I needed these to be markdown.
WELL I LIKE IT ಥ‿ಥ this is what happens when you let backend guys work on GUIs you guys are lucky I didn't make this a CLI app. In all seriousness though, I was going for a very lightweight minimal design so if you see something that needs to be fixed or can be improved please feel free to open a PR!
MIT License
Copyright (c) 2024 Greg James
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
Content type
Image
Digest
sha256:2bd35278a…
Size
6.1 MB
Last updated
5 months ago
docker pull gjames8/readr-backend