this post was submitted on 24 Dec 2024
3 points (80.0% liked)
Tesseract
38 readers
4 users here now
Tesseract: An Advanced Lemmy Client
The goal of Tesseract is to address as many things in Lemmy that annoy me as I can. I also trawl various "is there any way to [blank] in Lemmy?" posts to get feature ideas. Both of those lists are pretty extensive, so Tesseract has accumulated quite a few features.
Github: https://github.com/asimons04/Tesseract/
Hosted / Demo Instance: https://tesseract.dubvee.org/
Note that the hosted instance defaults to Lemmy World, but it is unlocked to be able to connect to any Lemmy server.
Announcements, support, and guidance for the Tesseract UI.
All instance rules apply here. Beyond that, just be civil and constructive.
founded 1 year ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
Shouldn't be tied to any instance or rely on my infrastructure at all.
The only hardcoded instance is Lemmy World, and that's just the default instance it uses if it's not deployed with the
PUBLIC_INSTANCE_URL
environment variable (when set, that variable overrides the hardcoded fallback one and is the only env var I have marked as required in the docs).All API calls go directly from your browser to your Lemmy homeserver. Tesseract doesn't even use SSR, so everything happens locally.
There are a few API endpoints internal to Tesseract, but they're relative to the deployment (e.g.
/tesseract/api/loops/lookup
). There's also the media proxying/caching module which will rewrite images to go through Tesseract's web server, but again, those are relative to the deployed instance. The proxy/cache module also has to be explicitly enabled by the admin when deploying Tesseract and by the user in their app settings (it's default disabled in both)Just to make sure I didn't leave some weird test case in place, I just did a
grep -r dubvee.org src/*
on the codebase, and the only reference to my instance is in the footer for the Lemmy community link.