Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/andostronaut/taskue

Taskue is a user-friendly task management app built using Vue.js and powered by Pinia for state management. 🌱📝✨
https://github.com/andostronaut/taskue

node pinia state-management task-manager tasks typescript vue vuejs

Last synced: about 10 hours ago
JSON representation

Taskue is a user-friendly task management app built using Vue.js and powered by Pinia for state management. 🌱📝✨

Awesome Lists containing this project

README

        

# Taskue

![build](https://github.com/iamando/commitizen-cli/workflows/build/badge.svg)
![license](https://img.shields.io/github/license/iamando/cocli?color=success)

Taskue is a user-friendly task management app built using Vue.js and powered by Pinia for state management. 🌱📝✨

## Project Setup

```sh
npm install
```

### Compile and Hot-Reload for Development

```sh
npm run dev
```

### Type-Check, Compile and Minify for Production

```sh
npm run build
```

### 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 test:e2e:dev
```

This runs the end-to-end tests against the Vite development server.
It is much faster than the production build.

But it's still recommended to test the production build with `test:e2e` before deploying (e.g. in CI environments):

```sh
npm run build
npm run test:e2e
```

### Lint with [ESLint](https://eslint.org/)

```sh
npm run lint
```