For someone that's not a web developer, I found Kanboard to be the easiest to set up, and it has all the basic features you'd expect. It's a traditional PHP app where you copy the files to your web server and set a few configuration options and you're good. If you want to use it locally, you download it, run php -S localhost:8080, and start using it. https://kanboard.org/ Note: The project is in maintenance mode, it…
Elegant open source project tracking, Trello like but self-hosted
31–40 of 107 posts
Re: Elegant open source project tracking, Trello like but self-hosted
#32Re: Elegant open source project tracking, Trello like but self-hosted
#33Congrats on shipping. Elegant could be removed from title though @dang
Re: Elegant open source project tracking, Trello like but self-hosted
#34Looks nice, I selfhosted https://github.com/wekan/wekan for a while, which is a MIT licensed heavily Trello-inspired alternative, does someone know both Wekan and Plankanban and can tell their differences?
Planka changed from MIT license to AGPL-3.0 license https://github.com/plankanban/planka
There is Planka fork 4gaBoards with MIT license at https://github.com/RARgames/4gaBoards , newest change one hour ago.
Re: Elegant open source project tracking, Trello like but self-hosted
#35Re: Elegant open source project tracking, Trello like but self-hosted
#36Looks really good, great work! Anyone knows of something like this but for the terminal? I’m building a job searching app for the terminal and a main upcoming feature is to have application tracking within the app. It would be great to use a kanban system for it Thank you!
Re: Elegant open source project tracking, Trello like but self-hosted
#37Earlier quoted context omitted.
Tangent - is there a Docker Wherehouse where I can find dockers to DL an run, that HN would suggest and some use cases of "pull a docker from here to do X - super cool"
Docker hub has been one of the primary registries. Each of the cloud providers typically have their own concept for docker or image repositories, and you can build docker files locally of you have a docker file in source code.
I was more looking for use-case as opposed to a barf of all dockers....
"I want to do TASK so here are all the dependencises for you to do TASK and how they will link"
---
And yeah; how do you tink a 3-year old in 2050 is going to be able to setup his dev env? Do you want him to learn binary.
Re: Elegant open source project tracking, Trello like but self-hosted
#38For someone that's not a web developer, I found Kanboard to be the easiest to set up, and it has all the basic features you'd expect. It's a traditional PHP app where you copy the files to your web server and set a few configuration options and you're good. If you want to use it locally, you download it, run php -S localhost:8080, and start using it. https://kanboard.org/ Note: The project is in maintenance mode, it…
Also available as a Docker image, for example: docker run -p 80:80 -t kanboard/kanboard:v1.2.8 https://docs.kanboard.org/v1/admin/docker/#running-the-conta... (that page has info about persistent storage, configuration and so on) Honestly one of the fastest and least "bloated" pieces of software in recent memory, way more responsive than something like OpenProject (which I use as a self-hosted Jira replacement for my…
The main appeal of PHP for me has always been it's ability to work as a “serverless” execution environment, long before this marketing concept even existed, so hosting your own PHP on a cloud machine with Docker sounds really backward to me.
Re: Elegant open source project tracking, Trello like but self-hosted
#39Earlier quoted context omitted.
Also available as a Docker image, for example: docker run -p 80:80 -t kanboard/kanboard:v1.2.8 https://docs.kanboard.org/v1/admin/docker/#running-the-conta... (that page has info about persistent storage, configuration and so on) Honestly one of the fastest and least "bloated" pieces of software in recent memory, way more responsive than something like OpenProject (which I use as a self-hosted Jira replacement for my…
What's the point of using Docker for PHP apps? The main appeal of PHP for me has always been it's ability to work as a “serverless” execution environment, long before this marketing concept even existed, so hosting your own PHP on a cloud machine with Docker sounds really backward to me.
Same reason you'd use Docker for anything, why would it matter if it's Python, PHP or Rust?
Is there something specific about the language that makes Python (or other language) more suitable with Docker for you, compared to PHP?
(Personally I only use Docker when I start to deal with multiple hosts/distributed architecture, which doesn't happen a lot tbh)
Re: Elegant open source project tracking, Trello like but self-hosted
#40Earlier quoted context omitted.
Also available as a Docker image, for example: docker run -p 80:80 -t kanboard/kanboard:v1.2.8 https://docs.kanboard.org/v1/admin/docker/#running-the-conta... (that page has info about persistent storage, configuration and so on) Honestly one of the fastest and least "bloated" pieces of software in recent memory, way more responsive than something like OpenProject (which I use as a self-hosted Jira replacement for my…
What's the point of using Docker for PHP apps? The main appeal of PHP for me has always been it's ability to work as a “serverless” execution environment, long before this marketing concept even existed, so hosting your own PHP on a cloud machine with Docker sounds really backward to me.