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

https://github.com/purejoymind/task-manager

A Task Tracker based on a tutorial I saw
https://github.com/purejoymind/task-manager

task-list task-manager taskmanager tasktracker vue3 vuejs vuejs3

Last synced: 10 months ago
JSON representation

A Task Tracker based on a tutorial I saw

Awesome Lists containing this project

README

          

# Task Manager
A simple Task Tracker made with vue 3 as part of a tutorial I saw to quickly get up on vue.
## Features
* Add/Remove Tasks
* Date and Time for Tasks
* Double click on tasks to toggle reminder on/off

![image](https://github.com/PureJoyMind/task-manager/assets/27802665/5e7ea9a1-7d4a-4fe5-941a-b2f420f167b5)

![image](https://github.com/PureJoyMind/task-manager/assets/27802665/d264ab16-5169-401a-a68e-f31bb6b9cdf3)

## Project setup
You must have Vue installed locally:
```
# Use sudo if on linux
npm install -g @vue/cli
```
Install dependencies
``` shell
npm install
```

## Run The Application
Run this in a separate terminal to start the backend replication:
```
# starts the backend replicator on port 5000
npm run backend
```
Then start the application in development mode:
```
# starts the app on port 8080
npm run serve
```

### Compiles and minifies for production
```
npm run build
```

### Customize configuration
See [Configuration Reference](https://cli.vuejs.org/config/).