{"id":42037762,"url":"https://github.com/johnpc/airbnb-turnover-checklist","last_synced_at":"2026-01-26T05:11:15.668Z","repository":{"id":331989655,"uuid":"1132406851","full_name":"johnpc/airbnb-turnover-checklist","owner":"johnpc","description":"Photo-based checklist app for tracking Airbnb property condition during guest turnovers","archived":false,"fork":false,"pushed_at":"2026-01-12T02:12:50.000Z","size":2122,"stargazers_count":0,"open_issues_count":3,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-01-12T02:26:20.517Z","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/johnpc.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-11T22:35:36.000Z","updated_at":"2026-01-12T02:12:54.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/johnpc/airbnb-turnover-checklist","commit_stats":null,"previous_names":["johnpc/airbnb-turnover-checklist"],"tags_count":null,"template":false,"template_full_name":null,"purl":"pkg:github/johnpc/airbnb-turnover-checklist","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/johnpc%2Fairbnb-turnover-checklist","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/johnpc%2Fairbnb-turnover-checklist/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/johnpc%2Fairbnb-turnover-checklist/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/johnpc%2Fairbnb-turnover-checklist/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/johnpc","download_url":"https://codeload.github.com/johnpc/airbnb-turnover-checklist/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/johnpc%2Fairbnb-turnover-checklist/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28767049,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-26T03:54:34.369Z","status":"ssl_error","status_checked_at":"2026-01-26T03:54:33.031Z","response_time":59,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: 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-01-26T05:11:15.038Z","updated_at":"2026-01-26T05:11:15.660Z","avatar_url":"https://github.com/johnpc.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Airbnb Turnover Checklist\n\nA photo-based checklist app for tracking Airbnb property condition during guest turnovers. Capture photos of each room after checkout and before check-in to document how the last guest left it and how you prepared it for the next guest.\n\n## Features\n\n- **Photo Documentation**: Take photos of each room/area in your listing\n- **Before/After Tracking**: Compare checkout condition vs. turnover-ready state\n- **Turnover History**: Keep a record of each guest turnover\n- **Room-by-Room Checklist**: Organize photos by room or area\n\n## Tech Stack\n\n- **React** + **Vite** - Fast development and build tooling\n- **TypeScript** - Strict typing (no `any` allowed)\n- **ESLint** + **Prettier** - Code formatting and linting\n- **Husky** + **lint-staged** - Pre-commit hooks for code quality\n\n## Getting Started\n\n```bash\n# Install dependencies\nnpm install\n\n# Run development server (in background with logs)\nnpm run dev \u003e dev.log 2\u003e\u00261 \u0026\n\n# Build for production\nnpm run build\n\n# Run sandbox\nnpm run sandbox\n```\n\n## Development\n\n```bash\n# Format code\nnpm run format\n\n# Lint code\nnpm run lint\n\n# Preview production build\nnpm run preview\n```\n\n## Pre-commit Hooks\n\nThis project uses Husky to run pre-commit hooks that:\n\n1. Run lint-staged (ESLint + Prettier on staged files)\n2. Run the build command to ensure the project builds successfully\n\n---\n\n## Notes for LLMs\n\n### Running Development Servers\n\n**CRITICAL**: Never run foreground processes like `npm run dev` directly. Always run them in the background and pipe logs to a file:\n\n```bash\n# ✅ CORRECT - Background with logs\nnpm run dev \u003e dev.log 2\u003e\u00261 \u0026\n\n# ❌ WRONG - Foreground process\nnpm run dev\n```\n\n### TypeScript Best Practices\n\n- **NO `any` types allowed** - ESLint enforces this with `@typescript-eslint/no-explicit-any: error`\n- Use inline types: `const user: { name: string; age: number } = ...`\n- Use defined types/interfaces: `interface User { name: string; age: number }`\n- Use type inference when possible: `const count = 5` (inferred as number)\n- Use union types for flexibility: `string | number`\n- Use generics for reusable components: `Array\u003cT\u003e`, `Promise\u003cT\u003e`\n\n### Architecture Patterns\n\n- **React Hooks \u0026 Context** - Use hooks and context providers instead of local state and prop drilling\n- **React Query** - All data fetching uses `@tanstack/react-query` with Amplify subscriptions for real-time updates\n- **Single Responsibility** - Components should be single-purpose and under 200 lines\n- **Utility Functions** - Extract pure logic to `utils/` or `helpers/` directories for easier testing\n- **React Router** - Each logical page has its own route\n- **shadcn/Tailwind** - Use shadcn components with Tailwind CSS for styling\n\n### Project Structure\n\nThis is a photo-based turnover checklist for Airbnb hosts to:\n\n1. Document property condition after guest checkout\n2. Document property condition after cleaning/turnover\n3. Track issues or damages\n4. Maintain a history of turnovers for accountability\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjohnpc%2Fairbnb-turnover-checklist","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjohnpc%2Fairbnb-turnover-checklist","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjohnpc%2Fairbnb-turnover-checklist/lists"}