{"id":27091512,"url":"https://github.com/raka-coder/react-supabase-crud-taskmanager","last_synced_at":"2025-04-06T07:39:07.749Z","repository":{"id":283946877,"uuid":"953366076","full_name":"Raka-coder/react-supabase-crud-taskmanager","owner":"Raka-coder","description":null,"archived":false,"fork":false,"pushed_at":"2025-03-23T08:11:39.000Z","size":0,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-03-23T08:28:38.540Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"JavaScript","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/Raka-coder.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}},"created_at":"2025-03-23T07:29:53.000Z","updated_at":"2025-03-23T08:11:42.000Z","dependencies_parsed_at":"2025-03-23T08:39:06.952Z","dependency_job_id":null,"html_url":"https://github.com/Raka-coder/react-supabase-crud-taskmanager","commit_stats":null,"previous_names":["raka-coder/react-supabase-crud-taskmanager"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Raka-coder%2Freact-supabase-crud-taskmanager","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Raka-coder%2Freact-supabase-crud-taskmanager/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Raka-coder%2Freact-supabase-crud-taskmanager/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Raka-coder%2Freact-supabase-crud-taskmanager/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Raka-coder","download_url":"https://codeload.github.com/Raka-coder/react-supabase-crud-taskmanager/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247451616,"owners_count":20940946,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","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":"2025-04-06T07:39:07.340Z","updated_at":"2025-04-06T07:39:07.734Z","avatar_url":"https://github.com/Raka-coder.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Task Manager CRUD Application\n\nThis project is a simple task manager application built using Vite, React, Tailwind CSS, and Supabase. It allows users to perform CRUD (Create, Read, Update, Delete) operations on tasks.\n\n## Features\n\n- Add new tasks with a title and description.\n- View a list of all tasks.\n- Update task details.\n- Delete tasks.\n- Filter tasks by their completion status.\n\n## Tech Stack\n\n\u003cdiv align=\"left\"\u003e\n\u003cimg src=\"https://cdn.jsdelivr.net/gh/devicons/devicon@latest/icons/vitejs/vitejs-original.svg\" width=\"48\" height=\"36\"/\u003e\n\u003cimg src=\"https://cdn.jsdelivr.net/gh/devicons/devicon@latest/icons/react/react-original.svg\" width=\"48\" height=\"36\"/\u003e\n\u003cimg src=\"https://cdn.jsdelivr.net/gh/devicons/devicon@latest/icons/tailwindcss/tailwindcss-original.svg\" width=\"48\" height=\"36\"/\u003e\n\u003cimg src=\"https://cdn.jsdelivr.net/gh/devicons/devicon@latest/icons/supabase/supabase-original.svg\" width=\"48\" height=\"36\"/\u003e         \n\u003c/div\u003e\u003cbr\u003e\n\n- **Vite**: A build tool that provides a faster and leaner development experience for modern web projects.\n- **React**: A JavaScript library for building user interfaces.\n- **Tailwind CSS**: A utility-first CSS framework for rapid UI development.\n- **Supabase**: An open-source Firebase alternative that provides a real-time database and authentication.\n\n## Getting Started\n\n### Prerequisites\n\n- Node.js and npm installed on your machine.\n\n### Installation\n\n1. Clone the repository:\n\n   ```bash\n   git clone https://github.com/Raka-coder/react-supabase-crud-taskmanager.git\n\n   cd react-supabase-crud-taskmanager\n   ```\n\n2. Install the dependencies:\n\n   ```bash\n   npm install\n   ```\n\n3. Set up Supabase:\n\n   - Go to [Supabase](https://supabase.io) and create an account.\n   - Create a new project and obtain your API keys.\n   - Create a `tasks` table using the following SQL:\n\n     ```sql\n     create table tasks (\n       id uuid default uuid_generate_v4() primary key,\n       title text not null,\n       description text,\n       is_completed boolean default false,\n       created_at timestamp default now()\n     );\n     ```\n\n   - Add `RLS` (Row Level Security) policy.\n   - Disable `RLS` (Row Level Security) for the table.\n\n4. Configure environment variables:\n   - Create a `.env` file in the root of your project and add your Supabase credentials:\n     ```\n     VITE_SUPABASE_URL=your-supabase-url\n     VITE_SUPABASE_ANON_KEY=your-anon-key\n     ```\n\n### Running the Application\n\n- Start the development server:\n\n  ```bash\n  npm run dev\n  ```\n\n- Open your browser and navigate to `http://localhost:5173` to see the application in action.\n\n### Building for Production\n\n- Build the application for production:\n\n  ```bash\n  npm run build\n  ```\n\n- Preview the production build:\n  ```bash\n  npm run preview\n  ```","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fraka-coder%2Freact-supabase-crud-taskmanager","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fraka-coder%2Freact-supabase-crud-taskmanager","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fraka-coder%2Freact-supabase-crud-taskmanager/lists"}