All Tasks & Goals

Every task you add here will automatically appear in This Week, Day View and Calendar based on its date.
0To Do
0In Progress
0Blocked
0Done
Category:

This Week

0
To Do
0
Doing
0
Done

No date assigned yet

No date assigned yet

Calendar Overview

Every task with a date shows here. Routines repeat with a left stripe.

Year Overview

Edit Task

Add Routine

Routines repeat every week and appear across all views. Edit days and times anytime.

☁ Connect Cloud Sync

Follow these steps once to save your tasks to the cloud — so they're safe and available on every device. Supabase is completely free, no credit card needed.

Step 1 — Create a free Supabase account
Go to supabase.com → click Start your project → sign up with Google or email. Then click New project, give it any name (e.g. nou-projects), and wait about 1 minute for it to load.
Step 2 — Create the tasks table
In the left sidebar click SQL EditorNew query. Copy and paste the code below, then click Run.
create table if not exists tasks ( id text primary key, title text, cat text, prio text, status text, date text, time text, time_end text, recurrence text, is_routine boolean default false, created bigint ); alter table tasks enable row level security; create policy "public access" on tasks for all using (true) with check (true); -- Add columns if upgrading from an older version: alter table tasks add column if not exists time_end text; alter table tasks add column if not exists recurrence text; alter table tasks add column if not exists is_routine boolean default false;
Step 3 — Copy your Project URL and anon key
In Supabase go to Project Settings → API (bottom of the left sidebar). You'll see:

Project URL — looks like https://xxxxxx.supabase.co
anon key — a long string starting with eyJ…

If you see a "Publishable key" tab instead, click Legacy anon, service_role API keys to find the eyJ… key.
Step 4 — Paste here and connect
Paste both values below and click Save & Connect. Your tasks will sync instantly.