https://github.com/m-emre-yalcin/task-manager
Desktop app for managing tasks on kanban board in local environment
https://github.com/m-emre-yalcin/task-manager
electron scss typescript vue3-composition-api
Last synced: 8 months ago
JSON representation
Desktop app for managing tasks on kanban board in local environment
- Host: GitHub
- URL: https://github.com/m-emre-yalcin/task-manager
- Owner: m-emre-yalcin
- License: mit
- Created: 2022-07-27T23:00:50.000Z (almost 4 years ago)
- Default Branch: master
- Last Pushed: 2022-10-14T21:22:15.000Z (over 3 years ago)
- Last Synced: 2023-06-07T22:29:38.828Z (about 3 years ago)
- Topics: electron, scss, typescript, vue3-composition-api
- Language: Vue
- Homepage: task-manager-nine-lemon.vercel.app
- Size: 799 KB
- Stars: 9
- Watchers: 2
- Forks: 1
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# Task Manager
Open-source desktop app for managing tasks on kanban board in local environment.
You can clone the repo or download one of the [releases](https://github.com/m-emre-yalcin/task-manager/releases) for start using it.
You can use it on browser as well: [demo](https://task-manager-nine-lemon.vercel.app/)
_This repo is open for any contribution!_



## Project Setup
```sh
npm install
```
### Compile and Hot-Reload for Development
```sh
npm run electron:dev
```
#### OR
```sh
npm run dev
```
```sh
npm run electron .
```
### Type-Check, Compile and Minify for Production
```sh
npm run build:tc
```
### Build Electron App
```sh
npm run dist
```
### Run Unit Tests with [Vitest](https://vitest.dev/)
```sh
npm run test:unit
```
### Run End-to-End Tests with [Cypress](https://www.cypress.io/)
```sh
npm run build
npm run test:e2e # or `npm run test:e2e:ci` for headless testing
```
### Lint with [ESLint](https://eslint.org/)
```sh
npm run lint
```