{"id":45034087,"url":"https://github.com/zigrivers/voice-clone","last_synced_at":"2026-02-19T06:08:40.820Z","repository":{"id":336481883,"uuid":"1149815117","full_name":"zigrivers/voice-clone","owner":"zigrivers","description":null,"archived":false,"fork":false,"pushed_at":"2026-02-05T03:34:43.000Z","size":450,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-02-05T03:40:26.134Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Python","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/zigrivers.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-02-04T14:56:21.000Z","updated_at":"2026-02-05T03:34:45.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/zigrivers/voice-clone","commit_stats":null,"previous_names":["zigrivers/voice-clone"],"tags_count":null,"template":false,"template_full_name":null,"purl":"pkg:github/zigrivers/voice-clone","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zigrivers%2Fvoice-clone","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zigrivers%2Fvoice-clone/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zigrivers%2Fvoice-clone/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zigrivers%2Fvoice-clone/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/zigrivers","download_url":"https://codeload.github.com/zigrivers/voice-clone/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zigrivers%2Fvoice-clone/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29604552,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-19T05:11:50.834Z","status":"ssl_error","status_checked_at":"2026-02-19T05:11:38.921Z","response_time":117,"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-02-19T06:08:40.133Z","updated_at":"2026-02-19T06:08:40.811Z","avatar_url":"https://github.com/zigrivers.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Voice Clone\n\nAI-powered voice cloning and content generation application. Create authentic content that matches your unique writing style while evading AI detection.\n\n## Features\n\n- **Voice Cloning**: Analyze writing samples to create a \"Voice DNA\" profile\n- **Content Generation**: Generate platform-optimized content in your voice\n- **AI Detection Avoidance**: Built-in scoring to ensure human-like output\n- **Multi-Platform Support**: LinkedIn, Twitter/X, Email, Blog, and more\n- **Voice Merging**: Combine multiple voice profiles with custom weights\n\n## Tech Stack\n\n### Backend\n- **Framework**: FastAPI (Python 3.11+)\n- **Database**: PostgreSQL with SQLAlchemy 2.0 (async)\n- **AI Providers**: OpenAI, Anthropic (Claude)\n- **Package Manager**: uv\n\n### Frontend\n- **Framework**: Next.js 14+ (App Router)\n- **Styling**: Tailwind CSS + shadcn/ui\n- **State Management**: TanStack Query + Zustand\n- **Authentication**: Auth.js (NextAuth)\n\n## Quick Start\n\n### Prerequisites\n\n- Python 3.11+\n- Node.js 18+\n- PostgreSQL 16+\n- Docker (optional, for local database)\n\n### 1. Clone the Repository\n\n```bash\ngit clone \u003crepository-url\u003e\ncd voice-clone\n```\n\n### 2. Set Up Environment Variables\n\n```bash\ncp .env.example .env\n# Edit .env with your API keys and configuration\n```\n\n### 3. Start the Database\n\nUsing Docker:\n```bash\ndocker compose up -d db\n```\n\nOr use your own PostgreSQL instance.\n\n### 4. Set Up the Backend\n\n```bash\ncd backend\nuv sync --extra dev\nuv run alembic upgrade head\nuv run uvicorn voice_clone.main:app --reload\n```\n\nThe API will be available at http://localhost:8000\n\n### 5. Set Up the Frontend\n\n```bash\ncd frontend\nnpm install\nnpm run dev\n```\n\nThe app will be available at http://localhost:3000\n\n## Development Commands\n\n### Backend\n\n```bash\ncd backend\n\n# Install dependencies\nuv sync --extra dev\n\n# Run development server\nuv run uvicorn voice_clone.main:app --reload\n\n# Run tests\nuv run pytest\n\n# Run tests with coverage\nuv run pytest --cov=voice_clone\n\n# Run linter\nuv run ruff check .\n\n# Run type checker\nuv run mypy src/\n```\n\n### Frontend\n\n```bash\ncd frontend\n\n# Install dependencies\nnpm install\n\n# Run development server\nnpm run dev\n\n# Run tests\nnpm test\n\n# Run linter\nnpm run lint\n\n# Build for production\nnpm run build\n```\n\n### Database\n\n```bash\ncd backend\n\n# Create a new migration\nuv run alembic revision --autogenerate -m \"description\"\n\n# Apply migrations\nuv run alembic upgrade head\n\n# Rollback one migration\nuv run alembic downgrade -1\n```\n\n## Project Structure\n\n```\nvoice-clone/\n├── backend/                 # FastAPI backend\n│   ├── src/voice_clone/    # Application code\n│   │   ├── api/            # API routes\n│   │   ├── models/         # SQLAlchemy models\n│   │   ├── schemas/        # Pydantic schemas\n│   │   ├── services/       # Business logic\n│   │   └── ai/             # AI provider integrations\n│   ├── alembic/            # Database migrations\n│   └── tests/              # Backend tests\n├── frontend/               # Next.js frontend\n│   ├── src/\n│   │   ├── app/            # App Router pages\n│   │   ├── components/     # React components\n│   │   ├── hooks/          # Custom hooks\n│   │   ├── lib/            # Utilities\n│   │   └── stores/         # Zustand stores\n│   └── tests/              # Frontend tests\n├── docs/                   # Documentation\n└── docker-compose.yml      # Local development services\n```\n\n## API Documentation\n\nWhen the backend is running, visit:\n- Swagger UI: http://localhost:8000/docs\n- ReDoc: http://localhost:8000/redoc\n\n## Contributing\n\nSee [CLAUDE.md](./CLAUDE.md) for development guidelines and git workflow.\n\n## License\n\n[License details here]\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fzigrivers%2Fvoice-clone","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fzigrivers%2Fvoice-clone","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fzigrivers%2Fvoice-clone/lists"}