Tarallo - selfhostable FOSS Trello alternative
from matteinim@feddit.it to selfhosted@lemmy.world on 08 Apr 2024 18:45
https://feddit.it/post/7008738

Hi! For the ones of you that use Trello, I made a simple to use and host alternative in PHP. It’s not a complete alternative like other projects, and I mainly made it to be able to host it on free PHP web servers while having control over data/attachments. It also support a basic importer for Trello JSON exports.

I’m hosting a test instance here, you can make an account to try it out (no email required):

trytarallo.altervista.org

And the repository with other instructions is here:

github.com/michelematteini/tarallo

#selfhosted

threaded - newest

lemmyreader@lemmy.ml on 08 Apr 2024 19:05 next collapse

The screenshots look nice !

octopus_ink@lemmy.ml on 08 Apr 2024 19:30 next collapse

I spent just a few minutes with it and I like it a lot. I swear it’s more responsive than actual trello! :D

HumanPerson@sh.itjust.works on 08 Apr 2024 20:28 next collapse

Wow code with actual comments!!! Amazing!

matteinim@feddit.it on 08 Apr 2024 21:24 collapse

…and I didn’t even minimize them on the test instance, so that people will feel their weight while the page load :D

HumanPerson@sh.itjust.works on 08 Apr 2024 21:53 collapse

Is there a docker version or a chance of one in the future?

matteinim@feddit.it on 08 Apr 2024 22:06 collapse

I know it’s kinda expected in these project… Let’s say that if no one contributes it, I’ll have to look up how to set it up, since I’m not really a web dev. But yeah it’s gonna be there.

HumanPerson@sh.itjust.works on 08 Apr 2024 22:12 next collapse

I was looking for something like this a little while ago but couldn’t find anything and this looks perfect. My server is mostly docker only so I might try to figure it out.

Turun@feddit.de on 08 Apr 2024 22:44 collapse

A basic image is really easy. It’s basically just

Dockerfile

FROM debian  # start with a minimal Linux system. There are probably better options than debian. Some images are made especially for docker (i.e. very minimal and light weight). 
RUN apt install dependencies  # do what ever you need to get your app running. 
RUN echo "options and stuff" >> /etc/a/config/file  # you can also edit system files
COPY . /app  # copy your project into the docker container.
EXPOSE 8080  # doesn't actually do anything, but documents where the app will be listening
CMD server-binary run /app/main.php  # I have actually no idea how php server stuff works

(Docs docs.docker.com/reference/dockerfile/)

Then people can run your project with docker.

Edit: checking the readme some small changes would be required. Config.php should read in environment variables and the DB init SQL should be run automatically somehow.

matteinim@feddit.it on 09 Apr 2024 07:07 collapse

Edit: checking the readme some small changes would be required. Config.php should read in environment variables and the DB init SQL should be run automatically somehow.

I’ll probably start with making these changes to make it compatible, thanks!

Fizz@lemmy.nz on 08 Apr 2024 22:18 next collapse

Actually a pretty cool project. Its smooth and works exactly how i would expect. Hopefully some companies use it and contribute money or code so you can keep improving it.

Olly1240@feddit.it on 08 Apr 2024 22:19 next collapse

This was a missed opportunity of calling it in honor of Lino Banfi: Tarello

richieadler@lemmy.myserv.one on 09 Apr 2024 01:39 next collapse

in PHP

😥

Pixel@lemmy.sdf.org on 09 Apr 2024 04:16 next collapse

Imagine starting project in PHP in 2024

Rikj000@discuss.tchncs.de on 09 Apr 2024 07:17 collapse

I write PHP on the daily and don’t understand the hate it gets :/

At least I can work on Linux at home while my co-workers are stuck on Windows with their C#

OpenPassageways@lemmy.zip on 09 Apr 2024 09:59 collapse

It’s been nearly 10 years since you needed to develop with C# on Windows.

New versions of .NET have been cross platform with a free IDE since 2016.

Rikj000@discuss.tchncs.de on 09 Apr 2024 11:01 collapse

Legacy software still requires maintenance.
Legacy dependencies still require to be used in new projects.
Dual booting multiple times a day is not feasible.

For those reasons none of my co-workers can fully switch to Linux.

Suoko@feddit.it on 09 Apr 2024 05:01 next collapse

It’s Time for activity pub integration :)

tristan@aussie.zone on 09 Apr 2024 05:12 next collapse

This looks great, I don’t suppose you plan on a pre-made docker container?

promitheas@iusearchlinux.fyi on 09 Apr 2024 06:48 next collapse

Ive been looking for something like this for a while. Ill need to try it out

Tick_Dracy@lemm.ee on 09 Apr 2024 15:35 next collapse

The app seems great. @matteinim@feddit.it I’m getting an error when trying to create the DB tables: Reason: SQL Error [1273] [HY000]: (conn=517001) Unknown collation: ‘utf8mb4_0900_ai_ci’

Does it support MariaDB 10.6.17?

matteinim@feddit.it on 09 Apr 2024 16:24 collapse

That is the character set and collation that should be used, and your DB probably don’t support it. You can try by leaving the default by removing “CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci” inside init_db.sql, anywhere you find it.

Tick_Dracy@lemm.ee on 09 Apr 2024 18:24 next collapse

I created a DB with utf8mb4 with the general_ci collection, but the issue remains. I’ll try to change the SQL script

Tick_Dracy@lemm.ee on 09 Apr 2024 21:57 collapse

To make it work, I had to remove some things from the script, which didn’t work for me:

  1. START TRANSACTION;
  2. SET time_zone = “+00:00”;
  3. /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
  4. /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
  5. /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
  6. /*!40101 SET NAMES utf8mb4 */;
  7. CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci (like you suggested)
  8. COMMIT; (In Alter Tables, since as far as I remember, DDL commands don’t need to commit, only the DML ones. So I did the commit manually)

If I need to remove the registration, do I have to update the Value column on tarallo_settings table or are there any settings’ menu which I’m not seeing?

mattreb@feddit.it on 10 Apr 2024 12:10 collapse

No there aren’t just disable it from tarallo_settings!

lascapi@jlai.lu on 09 Apr 2024 15:47 next collapse

I love you’re stack! PHP and vanilla JS 🤩 It’s so KISS!

I like that I can install it on my o2switch server.

douglasg14b@lemmy.world on 09 Apr 2024 19:00 collapse

It is, but also it’s worrisome since it means support is harder, which means risk of abandonment is higher and community contributions lower. Which means “buying in” is riskier for the time investment.

Not really criticizing, 10/10 points on making something and then putting it out there, nothing wrong with that. Just being a user who’s seen too many projects become stale or abandoned, and have noticed that the trend has some correlation to the technology choices those projects made.

mypasswordis1234@lemmy.world on 14 Apr 2024 01:40 collapse

I like it but UI/UX could be better