https://github.com/evavic44/tasky
Task management tool
https://github.com/evavic44/tasky
task task-management-app todo-app
Last synced: 27 days ago
JSON representation
Task management tool
- Host: GitHub
- URL: https://github.com/evavic44/tasky
- Owner: Evavic44
- Created: 2025-02-20T20:08:26.000Z (3 months ago)
- Default Branch: main
- Last Pushed: 2025-02-23T23:04:38.000Z (3 months ago)
- Last Synced: 2025-02-24T00:18:12.894Z (3 months ago)
- Topics: task, task-management-app, todo-app
- Language: TypeScript
- Homepage: https://taskylemon.vercel.app
- Size: 391 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Tasklemon Task Management Tool
Innovative task management for teams of all sizes. Streamline your workflow, boost productivity, and achieve your goals.
## Technologies
- React (TypeScript)
- Tailwind CSS
- Ant design
- Axios## Run Project Locally
- Clone repository
```sh
git clone https://github.com/Evavic44/tasky.git
cd tasky
```- Rename `.env.example` to `.env`
- Start dev server
```sh
npm install
npm run dev
```Visit [localhost:5173](http://localhost:5173) to see the app live
## Endpoint (Mockapi.io)
Tasky uses a free mock backend API to illustrate a more real-world implementation. Although it is grossly a shadow of what the actual implementation would be as this API is quite limited.
```ts
API_ENDPOINT = https://API_KEY.mockapi.io/api/v1/:
METHODS: GET, GET /tasks/:id, POST, PUT: /tasks/:id, DELETE: /tasks/:id
```- [Homepage](https://mockapi.io/projects)
- [Documentation](https://github.com/mockapi-io/docs/wiki)
- [Code Example](https://github.com/mockapi-io/docs/wiki/Code-examples#crud)