{"id":29024523,"url":"https://github.com/mwan9ilwa/cueview-expo","last_synced_at":"2026-04-28T16:03:38.332Z","repository":{"id":300647183,"uuid":"1006227714","full_name":"mwan9ilwa/cueview-expo","owner":"mwan9ilwa","description":"CueView is a personalized TV show tracking app built with React Native and Expo. Track your watching progress, discover new shows, manage your library, and stay updated on releases.","archived":false,"fork":false,"pushed_at":"2025-06-22T21:17:08.000Z","size":617,"stargazers_count":0,"open_issues_count":1,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-06-22T22:24:53.868Z","etag":null,"topics":["expo","firebase","react-native","tmdb-api","tv"],"latest_commit_sha":null,"homepage":"","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/mwan9ilwa.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-06-21T19:24:53.000Z","updated_at":"2025-06-22T21:17:11.000Z","dependencies_parsed_at":"2025-06-22T22:25:03.316Z","dependency_job_id":"7f9ce3c4-0638-4182-ac88-6a8cee2c75c9","html_url":"https://github.com/mwan9ilwa/cueview-expo","commit_stats":null,"previous_names":["mwan9ilwa/cueview-expo"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/mwan9ilwa/cueview-expo","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mwan9ilwa%2Fcueview-expo","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mwan9ilwa%2Fcueview-expo/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mwan9ilwa%2Fcueview-expo/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mwan9ilwa%2Fcueview-expo/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/mwan9ilwa","download_url":"https://codeload.github.com/mwan9ilwa/cueview-expo/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mwan9ilwa%2Fcueview-expo/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32387923,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-28T14:34:11.604Z","status":"ssl_error","status_checked_at":"2026-04-28T14:32:37.009Z","response_time":56,"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":["expo","firebase","react-native","tmdb-api","tv"],"created_at":"2025-06-26T04:02:08.679Z","updated_at":"2026-04-28T16:03:38.294Z","avatar_url":"https://github.com/mwan9ilwa.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# CueView\n\nCueView is a personalized TV show tracking app built with React Native and Expo. Track your watching progress, discover new shows, manage your library, and stay updated on releases.\n\n## Features\n\n### 🎬 Core Features\n- **Personal Library Management**: Track shows as \"Watching,\" \"Want to Watch,\" or \"Watched\"\n- **Episode-Level Progress Tracking**: Mark individual episodes as watched\n- **Show Discovery**: Browse trending, popular, and top-rated shows\n- **Search \u0026 Filters**: Find shows by title, genre, or network\n- **Detailed Show Information**: View synopses, cast, trailers, and ratings\n- **Personal Ratings \u0026 Notes**: Rate shows and add private notes\n\n### 📱 Cross-Platform\n- iOS and Android support through React Native\n- Consistent user experience across devices\n- Offline access with local data caching\n\n### 🔔 Smart Notifications\n- New episode alerts for tracked shows\n- Season premiere reminders\n- Custom episode reminders\n\n### 📊 Insights (Coming Soon)\n- Watch time statistics\n- Genre preferences\n- Monthly progress tracking\n\n## Tech Stack\n\n- **Frontend**: React Native with Expo\n- **Language**: TypeScript\n- **Navigation**: Expo Router\n- **Authentication**: Firebase Auth\n- **Database**: Firebase Firestore + SQLite (offline)\n- **External API**: The Movie Database (TMDb)\n- **Notifications**: Expo Notifications\n\n## Getting Started\n\n### Prerequisites\n\n- Node.js 18+ \n- npm or yarn\n- Expo CLI\n- iOS Simulator (for iOS development)\n- Android Studio \u0026 Emulator (for Android development)\n\n### Installation\n\n1. **Clone the repository**\n   ```bash\n   git clone \u003cyour-repo-url\u003e\n   cd CueView\n   ```\n\n2. **Install dependencies**\n   ```bash\n   npm install\n   ```\n\n3. **Set up environment variables**\n   ```bash\n   cp .env.example .env\n   ```\n   \n   Edit `.env` and add your API keys:\n   - Get Firebase config from [Firebase Console](https://console.firebase.google.com/)\n   - Get TMDb API key from [TMDb API](https://www.themoviedb.org/settings/api)\n\n4. **Set up Firebase**\n   - Create a new Firebase project\n   - Enable Authentication (Email/Password, Google, Apple)\n   - Create a Firestore database\n   - Update `config/firebase.ts` with your Firebase config\n\n5. **Start the development server**\n   ```bash\n   npm start\n   ```\n\n6. **Run on device/simulator**\n   ```bash\n   npm run ios     # iOS\n   npm run android # Android\n   npm run web     # Web\n   ```\n\n## Project Structure\n\n```\nCueView/\n├── app/                    # Expo Router screens\n│   ├── (tabs)/            # Tab navigation screens\n│   │   ├── index.tsx      # Home screen\n│   │   ├── library.tsx    # My Shows library\n│   │   ├── discover.tsx   # Show discovery\n│   │   ├── calendar.tsx   # Episode calendar\n│   │   └── profile.tsx    # User profile\n│   ├── _layout.tsx        # Root layout\n│   └── +not-found.tsx     # 404 screen\n├── components/            # Reusable UI components\n├── config/               # Configuration files\n│   └── firebase.ts       # Firebase configuration\n├── contexts/             # React contexts\n│   └── AppContext.tsx    # Global app state\n├── services/             # API and database services\n│   ├── auth.ts          # Authentication service\n│   ├── database.ts      # Local SQLite database\n│   └── tmdb.ts          # TMDb API service\n├── types/               # TypeScript type definitions\n│   └── index.ts         # App-wide types\n├── constants/           # App constants\n├── hooks/              # Custom React hooks\n└── assets/             # Images, fonts, etc.\n```\n\n## Development Phases\n\n### Phase 1: Core Infrastructure ✅\n- [x] Project setup with Expo and TypeScript\n- [x] Firebase configuration\n- [x] TMDb API integration\n- [x] Basic navigation structure\n- [x] Database services (SQLite + Firestore)\n- [x] Authentication service\n- [x] Global state management\n\n### Phase 2: Core Features (In Progress)\n- [ ] Authentication screens (Sign In, Sign Up, etc.)\n- [ ] Home screen with Continue Watching\n- [ ] Show discovery and search\n- [ ] Show details screen\n- [ ] Library management\n- [ ] Episode tracking\n\n### Phase 3: Advanced Features\n- [ ] Push notifications\n- [ ] Offline support\n- [ ] Personalized recommendations\n- [ ] Calendar view\n- [ ] Statistics and insights\n\n### Phase 4: Polish \u0026 Launch\n- [ ] Testing and bug fixes\n- [ ] Performance optimization\n- [ ] App store preparation\n- [ ] Beta testing\n\n## API Keys Setup\n\n### Firebase\n1. Go to [Firebase Console](https://console.firebase.google.com/)\n2. Create a new project or select existing\n3. Go to Project Settings \u003e General \u003e Your apps\n4. Add your app and copy the config values to `.env`\n\n### TMDb API\n1. Create account at [TMDb](https://www.themoviedb.org/)\n2. Go to Settings \u003e API\n3. Request an API key\n4. Add to `.env` as `EXPO_PUBLIC_TMDB_API_KEY`\n\n## Contributing\n\n1. Fork the repository\n2. Create your feature branch (`git checkout -b feature/amazing-feature`)\n3. Commit your changes (`git commit -m 'Add some amazing feature'`)\n4. Push to the branch (`git push origin feature/amazing-feature`)\n5. Open a Pull Request\n\n## License\n\nThis project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.\n\n## Acknowledgments\n\n- [The Movie Database (TMDb)](https://www.themoviedb.org/) for show data\n- [Expo](https://expo.dev/) for the amazing development platform\n- [Firebase](https://firebase.google.com/) for backend services\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmwan9ilwa%2Fcueview-expo","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmwan9ilwa%2Fcueview-expo","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmwan9ilwa%2Fcueview-expo/lists"}