Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/seanoliver/pace
https://github.com/seanoliver/pace
Last synced: 18 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/seanoliver/pace
- Owner: seanoliver
- Created: 2023-11-18T20:58:17.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2024-01-23T05:44:06.000Z (12 months ago)
- Last Synced: 2024-12-06T16:57:11.745Z (about 1 month ago)
- Language: TypeScript
- Size: 472 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Pace
## MVP Tasks
- [x] Supabase DB
- [ ] Supabase Auth
- [ ] Task + time entry
- [ ] Task topics/headers (grouping tasks)
- [ ] Total routine time summation
- [ ] Scheduled Lists vs. Ad Hoc Lists (Timed and Untimed)
- [ ] Task Timer -> Record time spent on task (regardkess of estimated time)
- [ ] Componentize click to text entry
- [ ] Single task completion timer for item from list ("play" button)
- [ ] Zen Mode fullscreen timer view
- [ ] Drag tasks in and out of "stack" (stack = list of tasks to be completed)```ts
interface Task {
id: string
name: string
description: string
estimated_time: number
completed: boolean
routine_id: string
routine_order: number
completed_at: Date
created_at: Date
updated_at: Date
}
``````ts
interface Completion {
id: string
task_id: string
started_at: Date
stopped_at: Date
task_completed: boolean
duration: number
}
```## Local Development
```bash
# Install dependencies
pnpm install# Start dev server
pnpm dev
```## Technology Stack
- [Next.js](https://nextjs.org/)
- [Supabase](https://supabase.io/)
- [Tailwind CSS](https://tailwindcss.com/)
- [PNPM](https://pnpm.io/)