watch-finished-turbo

Timothy Pomeroy 3b3d8d28ae Simplify main README to point to detailed docs in apps/*/README.md and docs/ 1 ماه پیش
.vscode 7b7c4f0ac9 Initial commit 1 ماه پیش
apps b63ce13163 Update READMEs, add data README, remove legacy code, move dev notes to docs 1 ماه پیش
data b63ce13163 Update READMEs, add data README, remove legacy code, move dev notes to docs 1 ماه پیش
docs b63ce13163 Update READMEs, add data README, remove legacy code, move dev notes to docs 1 ماه پیش
packages ea3fb5e455 Update package READMEs and add missing documentation 1 ماه پیش
.gitignore 7b7c4f0ac9 Initial commit 1 ماه پیش
.npmrc 7b7c4f0ac9 Initial commit 1 ماه پیش
Dockerfile b63ce13163 Update READMEs, add data README, remove legacy code, move dev notes to docs 1 ماه پیش
README.md 3b3d8d28ae Simplify main README to point to detailed docs in apps/*/README.md and docs/ 1 ماه پیش
docker-compose.yml 7b7c4f0ac9 Initial commit 1 ماه پیش
package.json 7b7c4f0ac9 Initial commit 1 ماه پیش
pnpm-lock.yaml b63ce13163 Update READMEs, add data README, remove legacy code, move dev notes to docs 1 ماه پیش
pnpm-workspace.yaml 7b7c4f0ac9 Initial commit 1 ماه پیش
turbo.json 7b7c4f0ac9 Initial commit 1 ماه پیش

README.md

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

# 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:

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