Productivity, Task Management, Open Source

Focalboard: My Search for a Trello Alternative That Doesn't Cost $15/Month

Tried Trello for personal projects. Hit the free tier limit. Looked for alternatives. Found Focalboard - open source, self-hosted, does what I need without the subscription.

March 11, 2026 ยท 9 min read

Needed a simple way to track tasks for my personal projects. Nothing fancy - just boards, lists, cards. Trello worked fine for a while, but then I hit the free tier limits.

Looked at the pricing: $15/month for features I'd actually use. That's $180/year. For a kanban board. Not happening.

What I was looking for:

Found Focalboard. Created by Mattermost (the team chat company). Open source. Does exactly what I need.


So how do you actually run it?

Focalboard gives you three options:

๐Ÿ’ป

Desktop App

Download and run on your computer

๐Ÿณ

Docker

Self-host on your server

๐Ÿ’ฌ

Mattermost Plugin

Integrate with team chat

Desktop app is what I use for personal projects. Just download and run.

# Download from GitHub releases
sudo dpkg -i focalboard_*.deb  # Ubuntu/Debian
# Or install .exe (Windows) or .dmg (macOS)

# Run it
focalboard

Opens in your browser. Everything runs locally. Data stored on your computer. That's it.

For teams, Docker makes more sense:

docker run -d \
  --name focalboard \
  -p 8080:8080 \
  -v focalboard-data:/data \
  mattermost/focalboard:latest

First time setup is pretty straightforward

If you've used Trello, you'll feel right at home immediately.

Open Focalboard โ†’ Create new board โ†’ Name it (I use "Personal Projects") โ†’ Choose template or start blank

Boards are your projects. Each board has lists and cards.

Here's how I organize my board:

Lists (left to right):
โ”œโ”€โ”€ Backlog     (stuff to do someday)
โ”œโ”€โ”€ To Do       (next up)
โ”œโ”€โ”€ Active      (working on now)
โ”œโ”€โ”€ Review      (need to check/test)
โ””โ”€โ”€ Done        (completed)

Cards can have:
โ”œโ”€โ”€ Title and description
โ”œโ”€โ”€ Due date
โ”œโ”€โ”€ Labels (bug, feature, refactor)
โ””โ”€โ”€ Attachments (screenshots, files)

Features that actually matter

After using Focalboard for a while, most of the "features" don't matter. What I actually use:

Card properties I use daily:

Views I switch between:

๐Ÿ’ก How I actually use it

Board view for day-to-day work. Table view when I need to see everything at once and reorganize. Calendar view for planning deadlines.


Real-world use: my daily workflow

Morning:
โ”œโ”€โ”€ Check "Active" list - what am I working on today?
โ”œโ”€โ”€ Move cards from "Planned" โ†’ "Active"
โ””โ”€โ”€ Check due dates - anything overdue?

During the day:
โ”œโ”€โ”€ Drag cards through workflow as I make progress
โ”œโ”€โ”€ Add notes with findings, decisions
โ””โ”€โ”€ Attach screenshots or code snippets

End of day:
โ”œโ”€โ”€ Completed cards โ†’ "Review"
โ”œโ”€โ”€ Clean up "Done" list (archive old cards)
โ””โ”€โ”€ Plan tomorrow's tasks

So how does it compare to Trello?

โœ“ What Focalboard does better

  • Cost: Free vs $15/month
  • Privacy: Your data vs their servers
  • Offline: Works anywhere vs requires internet
  • Freedom: Open source, modify if needed

โœ— What Trello does better

  • Integrations: Slack, GitHub, Jira (hundreds more)
  • Mobile: Polished native apps (Focalboard is basic)
  • Automation: Built-in Butler vs manual
  • Ecosystem: Templates, plugins, extensions

โš ๏ธ Reality check

Focalboard is simpler. If you need complex automations, lots of integrations, or enterprise features - you'll miss Trello's power-ups. But for basic kanban task management, it does everything I need.


Stuff that tripped me up

Data storage

Desktop app stores data locally. If you switch computers, export and import manually. Or use Docker with persistent volume to avoid this entirely.

Updates

Doesn't auto-update. You manually download new versions from GitHub releases when you remember to.

Mobile

Mobile support is basic. You can access the web interface, but it's not optimized for touch. For serious mobile use, Trello's native apps are way better.


So should you use it?

Use Focalboard if:

Stick with Trello if:


Bottom line

Focalboard works for me. It's simple, fast, does what I need without the subscription fee.

For personal projects, it's perfect. Boards are responsive. Data stays on my machine. No monthly payments.

The main tradeoff is fewer features than Trello. But honestly, I rarely miss them. Basic kanban is enough for 90% of my task management needs.

If you're paying for Trello or hitting free tier limits, give Focalboard a shot. It might not have all the bells and whistles, but it gets the job done.

๐Ÿ“š Recommended Reading