Stay organized and never miss a deadline.
Easily move tasks between columns, set due dates, and keep your workflow smooth โ all in a simple, lightweight app.
๐ Organize tasks using Kanban-style columns
โฐ Add and manage deadlines for each task
โก Fast updates and quick data loading with Supabase
๐งก Built with Svelte
This app uses Supabase to handle:
๐ Authentication (optional)
๐งฎ PostgreSQL database
๐ API integration
To run Kanbanomaly locally, follow these steps:
git clone https://github.com/Mi1y/Kanbanomaly.git
cd Kanbanomaly
npm install
Create a .env
file in the root folder and add your Supabase credentials:
VITE_SUPABASE_URL=your-supabase-url
VITE_SUPABASE_ANON_KEY=your-anon-key
create table public.tasks ( id bigint generated by default as identity primary key, title text not null, status text not null, level text not null, project_id bigint not null references projects(id) on delete cascade );
### 5. Start the development server
```bash
npm run dev
Open your browser and go to http://localhost:5173
๐งก Svelte
โก Vite
๐๏ธ Supabase
Found a bug or have an idea? Open an issue or send a pull request!