Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/seanoliver/pace


https://github.com/seanoliver/pace

Last synced: 18 days ago
JSON representation

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