Syncwave is a real-time kanban board that's simple and beautiful.
We built Syncwave because we were tired of kanban boards that do too much.
Most boards bury you in features. Settings, integrations, workflows, automations. You spend more time configuring than working.
Syncwave does less on purpose.
Open it, create cards, drag them between columns, and watch your teammates' changes appear instantly—that's it.
That's the whole product.
Table of Contents
Try it at app.syncwave.dev/demo. No signup required.
Use our hosted version at app.syncwave.dev or self-host it.
Pull the Docker image and run it:
docker run --name syncwave -d -p 8080:8080 -v syncwave-data:/data syncwave/syncwaveThen open http://localhost:8080/.
Docker Compose:
services:
syncwave:
image: syncwave/syncwave
container_name: syncwave
restart: unless-stopped
ports:
- '8080:8080'
volumes:
- syncwave-data:/data
volumes:
syncwave-data:- GitHub Discussions for questions
- Discord for quick help
- GitHub Issues for bugs
MIT. See LICENSE.
Dmitry Tilyupo - [email protected]
Project: https://github.com/syncwavedev/syncwave
Built with:
- Svelte - frontend framework
- Node.js - backend runtime
- LevelDB - embedded database for self-hosted version
- FoundationDB - distributed database for hosted version
- Tailwind CSS - styling
- Astro - static site generator for docs
- TypeScript - type safety throughout