# Watch Finished Turbo A modern, full-stack video processing system built with Turborepo. Automatically monitors directories, processes videos with HandBrake, and provides a complete web interface for management. ## Quick Start ```bash # Install dependencies pnpm install # Start all services (web + API) pnpm run dev # Or start individually pnpm run web # Web interface on :3000 pnpm run service # API server on :3001 pnpm run cli # Interactive CLI ``` ## Documentation For detailed information, see: - **[Web Interface](apps/web/README.md)** - Next.js dashboard documentation - **[API Service](apps/service/README.md)** - NestJS backend and API reference - **[CLI Tool](apps/cli/README.md)** - Command-line interface guide - **[Database Schema](data/README.md)** - SQLite database structure - **[Development Notes](docs/DEVELOPMENT_NOTES.md)** - Setup and development guide ## Project Structure ``` ├── apps/ │ ├── web/ # Next.js web interface │ ├── service/ # NestJS API server │ └── cli/ # Command-line interface ├── packages/ # Shared configurations ├── data/ # SQLite database ├── docs/ # Documentation └── scripts/ # Build scripts ```