having mardown support for code blocks would be good.
Show HN: Kan.bn – An open-source alterative to Trello
61–70 of 236 posts
Re: Show HN: Kan.bn – An open-source alterative to Trello
#62Feels like Trello alternatives are the next ToDo list. There's so many of them these days that I struggle to grasp why anyone thinks launching an opensource one and thinking they can turn a profit with a cloud version is ever going to work. In all likelihood the project will be abandoned in 6 months and the site offline in 12.
Re: Show HN: Kan.bn – An open-source alterative to Trello
#63I've been testing using AI coding agents by asking an AI acting as a software designer to build a set of kanban style cards as .md files in a directory, designing the work we talked about into cards for AI developers. It works quite well, and then you can review the cards (as files) and then ask another AI agent running as whatever role is suitable for that card, to pick up the card by name and do the work. But there…
What is with you people and the quest of degrading your own while feeling really happy about it like it's some amazing thing?
Re: Show HN: Kan.bn – An open-source alterative to Trello
#64Hi! Your license link is a 404, just FYI
Re: Show HN: Kan.bn – An open-source alterative to Trello
#65Earlier quoted context omitted.
The market for an on-premise, developer maintained solution is way bigger for a product like this than the cloud version. We made the exact same, incorrect assumption with https://github.com/Flagsmith/flagsmith several years ago. The market for data sensitive on-premise delpoyments is a LOT bigger than most people would imagine. For Flagsmith, the majority of our revenue comes from on-premise deployments.
Wholeheartedly agree. On-prem is still a major market to play in and have worked on many consulting engagements architecting software that plays nicely. Just curious - how do you guys deploy Flagsmith on-prem? I'm still trying to find a nice deployment pattern that aligns well with both client and vendor.
Re: Show HN: Kan.bn – An open-source alterative to Trello
#66Re: Show HN: Kan.bn – An open-source alterative to Trello
#67Congrats, any plans to add it as a Collify app?
Re: Show HN: Kan.bn – An open-source alterative to Trello
#68Earlier quoted context omitted.
How does it compare to the existing open-source boards, such as: https://wekan.github.io/ https://taiga.io/ https://kanboard.org/
Or this one that I've been self-hosting for my team: https://vikunja.io/
Re: Show HN: Kan.bn – An open-source alterative to Trello
#69Earlier quoted context omitted.
The market for an on-premise, developer maintained solution is way bigger for a product like this than the cloud version. We made the exact same, incorrect assumption with https://github.com/Flagsmith/flagsmith several years ago. The market for data sensitive on-premise delpoyments is a LOT bigger than most people would imagine. For Flagsmith, the majority of our revenue comes from on-premise deployments.
Wholeheartedly agree. On-prem is still a major market to play in and have worked on many consulting engagements architecting software that plays nicely. Just curious - how do you guys deploy Flagsmith on-prem? I'm still trying to find a nice deployment pattern that aligns well with both client and vendor.
Absolute best scenario is single binary with embedded static files (Go is very good at that) that just takes config and/or CLI options (preferably both if it isn't too complex of a config) and works. Or static file that just needs to be pointed at database with certain version
It can be easily run on VM, it can be easily made with container, it can be easily made into package, or ran in cloud with cloud DB service. All those options are a plus, but the fact it is a single binary makes it easier to make a package or container out of it and deliver that to customers.
Second best is .deb package that deploys a single service or a container that just exposes a port and that's it.
DB-wise there is a temptation to provide a bunch of containers that have all of app's dependencies (DB etc.) but that's a LOT of work on both side. On supplier side you have ton of stuff you need to take care of, providing method to do consistent backups, caring about log rotation, handling service restarts if something fails etc. and lastly procedures to recover it from the backup
And on client side they can't just do same database backup they do for every single other database they know, they have to take app's custom way of backing up and integrate it, or just "copy whole container and hope for best".
It can be worth it, if your setup is complex enough that asking client to install those dependencies would be a big obstacle (and especially if you need to use different versions than available under Debian/Ubuntu stable), but if you are just deploying container with app and plain PostgreSQL db without using anything special that would need latest version, just let user ship their own DB.
Also supporting "small" deployment with just SQLite backend is great for demoing stuff to management
Re: Show HN: Kan.bn – An open-source alterative to Trello
#70Earlier quoted context omitted.
The amount of high quality Kanban / Trello-like options is low while the need for these is very high. At the same time getting started in building such a tool doesn't require a lot of resources. I think it's a good thing and I hope to see one that can replace my Notion Kanban soon.
What makes it high quality in your experience? (I’m doing customer research for my own kanban startup) /s
But for me personally I'd love a Kanban product that can rival Notion's feature set and simplicity, can be used offline / is local-first, offers some custimzation options, does not force me into a subscription, works well on desktop (Windows) as well as on my phone (Android).