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
- Host: GitHub
- URL: https://github.com/purejoymind/task-manager
- Owner: PureJoyMind
- Created: 2023-12-14T21:10:47.000Z (about 2 years ago)
- Default Branch: master
- Last Pushed: 2023-12-16T06:39:08.000Z (about 2 years ago)
- Last Synced: 2025-01-11T06:45:35.059Z (12 months ago)
- Topics: task-list, task-manager, taskmanager, tasktracker, vue3, vuejs, vuejs3
- Language: Vue
- Homepage: https://youtu.be/qZXt1Aom3Cs?si=7ywpMPPcJE4alDRS
- Size: 224 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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


## 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/).