https://github.com/quinntynebrown/clarity
Simple Kanban Board using ASP.NET Core and Angular
https://github.com/quinntynebrown/clarity
angular-material angular9 asp-net-core drag-and-drop entity-framework-core kanban-board mediatr
Last synced: 3 months ago
JSON representation
Simple Kanban Board using ASP.NET Core and Angular
- Host: GitHub
- URL: https://github.com/quinntynebrown/clarity
- Owner: QuinntyneBrown
- Created: 2020-02-08T14:52:55.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2023-03-24T10:35:15.000Z (about 2 years ago)
- Last Synced: 2025-03-05T10:03:10.125Z (3 months ago)
- Topics: angular-material, angular9, asp-net-core, drag-and-drop, entity-framework-core, kanban-board, mediatr
- Language: C#
- Homepage:
- Size: 1.04 MB
- Stars: 9
- Watchers: 4
- Forks: 2
- Open Issues: 10
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Clarity
Simple Kanban Board using ASP.NET Core and Angular
## Give a Star! :star:
If you like or are using this project to learn or start your solution, please give it a star. Thanks!
## How to run locally
1. [Download and install the .NET Core SDK](https://dotnet.microsoft.com/download)
* If you don't have `localdb` available on your system, [Download and install SQL Server Express](https://docs.microsoft.com/en-us/sql/database-engine/configure-windows/sql-server-express-localdb)
2. Open a terminal such as **PowerShell**, **Command Prompt**, or **bash** and navigate to the `src/Clarity.Api` folder
3. Run the following `dotnet` commands:
```sh
dotnet build
dotnet run
```
4. Open your browser to: `https://localhost:5001`.
5. [Download and install the node package manager](https://nodejs.org/en/download)
6. Open a terminal such as **PowerShell**, **Command Prompt**, or **bash** and navigate to the `src/Clarity.App` folder
7. Run the following commands:
```sh
npm install -g @angular/cli
npm install
ng serve
```
8. Open your browser to: `https://localhost:4200`.## To Run the tests
1. [Download and install the .NET Core SDK](https://dotnet.microsoft.com/download)
* If you don't have `localdb` available on your system, [Download and install SQL Server Express](https://docs.microsoft.com/en-us/sql/database-engine/configure-windows/sql-server-express-localdb)
2. Open a terminal such as **PowerShell**, **Command Prompt**, or **bash** and run the following command:
`dotnet test`