{"id":47869955,"url":"https://github.com/menteora/flowtask2","last_synced_at":"2026-04-04T00:47:12.377Z","repository":{"id":332132180,"uuid":"1129069519","full_name":"menteora/flowtask2","owner":"menteora","description":"flowtask","archived":false,"fork":false,"pushed_at":"2026-02-18T15:20:10.000Z","size":2373,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-04-04T00:47:09.883Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/menteora.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2026-01-06T15:04:22.000Z","updated_at":"2026-02-18T15:22:07.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/menteora/flowtask2","commit_stats":null,"previous_names":["menteora/flowtask2"],"tags_count":0,"template":false,"template_full_name":"google-gemini/aistudio-repository-template","purl":"pkg:github/menteora/flowtask2","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/menteora%2Fflowtask2","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/menteora%2Fflowtask2/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/menteora%2Fflowtask2/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/menteora%2Fflowtask2/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/menteora","download_url":"https://codeload.github.com/menteora/flowtask2/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/menteora%2Fflowtask2/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31383635,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-03T23:20:52.058Z","status":"ssl_error","status_checked_at":"2026-04-03T23:20:51.675Z","response_time":107,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2026-04-04T00:47:11.558Z","updated_at":"2026-04-04T00:47:12.364Z","avatar_url":"https://github.com/menteora.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"\n# FlowTask 🌊 (Dynamic Tree Edition)\n\n**FlowTask** è un gestore di progetti visivo ora potenziato da una struttura ad albero dinamica basata su `parent_ids`.\n\n## 🚀 Novità Strutturali\n*   **Dynamic Tree**: La gerarchia dell'albero è determinata unicamente dal campo `parent_ids`.\n*   **Root Detection**: Un ramo è considerato radice se tra i suoi genitori figura l'ID del progetto.\n*   **Simplified Schema**: Rimossi i campi ridondanti `project_id` e `children_ids` dalla tabella dei rami.\n\n## 🗄️ Configurazione Database (Supabase)\n\nAssicurati che le tabelle abbiano la colonna `updated_at` (timestamptz) e `deleted_at` per il soft delete.\n\n```sql\n-- Tabella rami aggiornata\ncreate table public.flowtask_branches (\n  id text primary key,\n  title text not null,\n  description text,\n  status text not null,\n  type text default 'standard',\n  responsible_id text,\n  start_date text,\n  end_date text,\n  due_date text,\n  archived boolean default false,\n  collapsed boolean default false,\n  sprint_counter integer default 1,\n  parent_ids text[], -- Contiene IDs di rami genitori o l'ID del Progetto per i rami radice\n  position integer default 0,\n  updated_at timestamptz default now() not null,\n  deleted_at timestamptz\n);\n\n-- Abilita il Realtime per queste tabelle in Supabase\nalter publication supabase_realtime add table flowtask_projects;\nalter publication supabase_realtime add table flowtask_branches;\nalter publication supabase_realtime add table flowtask_tasks;\nalter publication supabase_realtime add table flowtask_people;\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmenteora%2Fflowtask2","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmenteora%2Fflowtask2","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmenteora%2Fflowtask2/lists"}