this post was submitted on 30 Jul 2023
386 points (96.6% liked)

Lemmy.World Announcements

28827 readers
4 users here now

This Community is intended for posts about the Lemmy.world server by the admins.

Follow us for server news ๐Ÿ˜

Outages ๐Ÿ”ฅ

https://status.lemmy.world

For support with issues at Lemmy.world, go to the Lemmy.world Support community.

Support e-mail

Any support requests are best sent to [email protected] e-mail.

Report contact

Donations ๐Ÿ’—

If you would like to make a donation to support the cost of running this platform, please do so at the following donation URLs.

If you can, please use / switch to Ko-Fi, it has the lowest fees for us

Ko-Fi (Donate)

Bunq (Donate)

Open Collective backers and sponsors

Patreon

Join the team

founded 1 year ago
MODERATORS
 

We just added Alexandrite to the server, it's an alternative desktop UI for Lemmy created by Sheodox who worked tirelessly to make the necessary changes to we could host it ourselves here. So go to https://a.lemmy.world and have a look!

He continues to update it constantly, you can follow the development on his github page or in his community. If you like what you see and want to support him, why not buy him a coffee? :)

For those who don't have Lemmy World as their home instance and want to use Alexandrite, either ask your instance admins to add it or go to https://alexandrite.app!

Edit: I should probably have mentioned that Alexandrite is meant for desktop!

you are viewing a single comment's thread
view the rest of the comments
[โ€“] [email protected] 3 points 1 year ago (1 children)

It's really great that you are moving so quickly and supporting your community in this way, but I wonder if all these front ends are potentially going to create a bit of a long term maintenance headache? How are we certain that they don't introduce any new vulnerabilities and how are we staying on top of those when they happen? I worry that each new frontend adds burden to an already small community for a potentially minor practical gain.

Don't get me wrong, you guys are doing awesome stuff, and I'm consistently impressed with this instance. That's just the first thing that comes to my head having done software for many years myself.

[โ€“] [email protected] 10 points 1 year ago (1 children)

Maintenance in regards to updates is not an issue. All the extra frontends we added run in docker and are automatically updated twice a day to make sure we are always running the latest stable versions. All apps are using the Lemmy api's just like the 3rd party apps and should anything break we have ways to contact the developers.

[โ€“] [email protected] 0 points 1 year ago (1 children)

How did you set them up to automatically update? Have you done a write up on how you set these up? Would be great for other admins to be able to do the same

[โ€“] [email protected] 3 points 1 year ago

We use docker compose in scripts and crontabs

/scripts/update-alexandrite.sh:

cd /opt/alexandrite
docker-compose pull
docker-compose down
docker-compose up -d

Then use crontab -e and add this line:

00 05,00 * * * bash /scripts/update-alexandrite.sh