{"id":28254418,"url":"https://github.com/mindulmendul/game-vault-inspector","last_synced_at":"2026-03-02T06:31:13.312Z","repository":{"id":292808824,"uuid":"975595839","full_name":"MindulMendul/game-vault-inspector","owner":"MindulMendul","description":"\"더홀릭보드게임카페\" 게임 재고 관리 시스템 페이지","archived":false,"fork":false,"pushed_at":"2025-06-04T09:46:27.000Z","size":256,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-06-17T22:02:22.544Z","etag":null,"topics":["cursor","lovable","supabase"],"latest_commit_sha":null,"homepage":"https://game-vault-inspector.vercel.app","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/MindulMendul.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}},"created_at":"2025-04-30T15:15:28.000Z","updated_at":"2025-06-04T09:46:29.000Z","dependencies_parsed_at":"2025-06-17T22:02:05.344Z","dependency_job_id":"2cdd1cd2-fced-4556-b538-126c0708e7eb","html_url":"https://github.com/MindulMendul/game-vault-inspector","commit_stats":null,"previous_names":["mindulmendul/game-vault-inspector"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/MindulMendul/game-vault-inspector","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MindulMendul%2Fgame-vault-inspector","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MindulMendul%2Fgame-vault-inspector/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MindulMendul%2Fgame-vault-inspector/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MindulMendul%2Fgame-vault-inspector/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/MindulMendul","download_url":"https://codeload.github.com/MindulMendul/game-vault-inspector/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MindulMendul%2Fgame-vault-inspector/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":262319610,"owners_count":23293050,"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":["cursor","lovable","supabase"],"created_at":"2025-05-19T19:19:49.132Z","updated_at":"2026-03-02T06:31:12.546Z","avatar_url":"https://github.com/MindulMendul.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"\n# Board Game Inventory Manager\n\nA full-stack web application for managing board game inventory and inspection status for a board game store. Built with React, TypeScript, Tailwind CSS, and Supabase.\n\n## Features\n\n- Admin login with email/password authentication\n- Board game listing and management\n- Detailed game inspection tracking\n- Dashboard showing games needing attention\n- Protected routes for authenticated users only\n\n## Tech Stack\n\n- Frontend: React with TypeScript\n- Styling: Tailwind CSS with shadcn/ui components\n- State Management: React Context API\n- Backend \u0026 Authentication: Supabase\n- Routing: React Router\n\n## Supabase Setup\n\nFor full functionality, you need to connect this project to Supabase:\n\n1. Click the green Supabase button in the Lovable interface\n2. Connect to a new or existing Supabase project\n3. Create the required tables in your Supabase project:\n\n```sql\ncreate table\n  public.games (\n    id uuid not null default uuid_generate_v4(),\n    created_at timestamp with time zone not null default now(),\n    name text not null,\n    inspected_at timestamp with time zone not null default now(),\n    inspected_by text not null,\n    has_manual boolean not null default true,\n    component_status text not null default '상'::text,\n    needs_reorder boolean not null default false,\n    missing_components text not null default '',\n    constraint games_pkey primary key (id),\n    constraint games_component_status_check check ((component_status = ANY (ARRAY['상'::text, '중'::text, '하'::text])))\n  ) tablespace pg_default;\n\n-- Set up Row Level Security\nalter table public.games enable row level security;\n\n-- Create policy to allow authenticated users to read games\ncreate policy \"Allow authenticated users to read games\"\non public.games for select\nto authenticated\nusing (true);\n\n-- Create policy to allow authenticated users to insert games\ncreate policy \"Allow authenticated users to insert games\"\non public.games for insert\nto authenticated\nwith check (true);\n\n-- Create policy to allow authenticated users to update games\ncreate policy \"Allow authenticated users to update games\"\non public.games for update\nto authenticated\nusing (true);\n```\n\n4. Set up authentication in your Supabase project:\n   - Go to Authentication \u003e Settings\n   - Enable Email provider\n   - Configure email templates and settings as desired\n   - Create an admin user via the Supabase dashboard or through signup\n\n## Development Notes\n\n- This project was built with Lovable, a full-stack AI development platform\n- The current implementation includes temporary mock data that will be replaced by real Supabase data once connected\n- All routes except the login page are protected and require authentication\n\n## Demo Access\n\nFor demo purposes, you can use these credentials:\n- Email: admin@example.com\n- Password: password\n\n*Note: These credentials will only work with the mock authentication. You'll need to set up real credentials in Supabase.*\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmindulmendul%2Fgame-vault-inspector","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmindulmendul%2Fgame-vault-inspector","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmindulmendul%2Fgame-vault-inspector/lists"}