Jack Moore

Email: jack(at)jmoore53.com
Project Updates

Kanboard Copy Multiple Links

02 Mar 2024 » code, infrastructure, docker

Using Kanboard a lot I found myself wanting to add multiple links at a time. This made me pull down the kanboard source code and build my own docker image with the feature I needed.

To implement this feature, the “Add External Links” function was updated to support multiline input. This enhancement allows users to paste several URLs at once. A lookup function was also added to fetch and display the titles of these links within the task view, making it easier to identify the nature of each linked resource. This improvement saves time and reduces the need to add links one by one manually.

Process of Applying Fixes/Rebase

Here is the step-by-step process used to apply recent fixes:

  1. Merge New Changes: Update the branch with the latest changes from the Kanboard repository.
    git pull main
    
  2. Rebuild Docker Image: Build the updated Kanboard Docker image.
    docker build -t jmoore53/kanboard:latest
    
  3. Restart Kanboard Services: Stop and restart the Kanboard service using Docker Compose to apply the new build.
    docker compose stop kanboard
    docker compose up -d
    

These steps allow the changes to run locally, ensuring the new feature functions as expected.

SSH Key Management for GitHub

Something I ran into along the way was the SSH agent for github. Below is the fix.

  1. Start the SSH Agent: Initiate the SSH agent in the background.
    eval "$(ssh-agent -s)"
    
  2. Add SSH Private Key: Add the SSH private key to the SSH agent.
    ssh-add ~/.ssh/id_ed25519
    

    Replace id_ed25519 with the specific private key file name if different.

Conclusion

This update simplifies the process of adding multiple external links to Kanboard tasks, enhancing usability and project management efficiency. By automating and streamlining these actions, it is possible to maintain a more organized and accessible task management system.

© Jack Moore - This site was last built Fri 30 Aug 2024 12:31:24 PM EDT