Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/linkdotnet/kanbanboard
A simple kanban board
https://github.com/linkdotnet/kanbanboard
blazor blazor-webassembly grpc-web kanban-board net5 ravendb wasm
Last synced: 4 months ago
JSON representation
A simple kanban board
- Host: GitHub
- URL: https://github.com/linkdotnet/kanbanboard
- Owner: linkdotnet
- License: mit
- Created: 2020-09-25T11:50:12.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2021-10-01T07:34:40.000Z (over 3 years ago)
- Last Synced: 2024-05-02T03:37:09.511Z (9 months ago)
- Topics: blazor, blazor-webassembly, grpc-web, kanban-board, net5, ravendb, wasm
- Language: C#
- Homepage:
- Size: 653 KB
- Stars: 8
- Watchers: 2
- Forks: 3
- Open Issues: 6
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Kanban Board
This is a very simple Kanban Board build on top of Blazor (wasm), gRPC and RavenDB.It should show how Drag&Drop, Blazor Component Unit Testing work and how all the technologies come together.
# Setup
To make it run just start the `LinkDotNet.KanbanBoard.Web` project and the `LinkDotNet.KanbanBoard.UI` project.
Furthermore you need a running RavenDb-Instance. There should be a database already created. The name of the database is defined in the appsettings.json.# Current Features
The following features are fully working:
* Adding Goals via dialog
* Displaying Goals, which were created before
* Moving Goals in between lanes
* Deleting Goals
* Adding Subtasks to GoalsThe following technologies are working:
* RavenDB as Database
* ASP.NET Core Backend with gRPC Endpoints
* Blazor WASM with gRPC Client (gRPC Web)
* Blazor State-Handling
* Component Unit tests for Blazor
* .NET 5 driven