A minimal Kanban-style task board built with Streamlit.
- Add tasks to "To Do", "In Progress", or "Done"
- Move tasks between columns
- Save tasks to
kanban_data.json(persistent) - Reset entire board with one click
git clone https://github.com/YOUR_USERNAME/kanban-board-app.git
cd kanban-board-app
pip install -r requirements.txt
streamlit run kanban.py- Go to https://streamlit.io/cloud
- Sign in with GitHub
- Click "New app"
- Select this repo and the
kanban.pyfile - Click Deploy
You're done! 🎉
kanban-board-app/
├── kanban.py # main app file
├── requirements.txt # streamlit dependency
└── kanban_data.json # task data file (auto-created)
MIT