{"id":30590589,"url":"https://github.com/lorenzotabasso/repeatio","last_synced_at":"2026-05-01T18:32:50.338Z","repository":{"id":310222970,"uuid":"1033446151","full_name":"lorenzotabasso/repeatio","owner":"lorenzotabasso","description":"Modern language learning with repetition. Nx monorepo with Next.js frontend and FastAPI backend.","archived":false,"fork":false,"pushed_at":"2025-08-31T20:24:55.000Z","size":409,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-09-09T09:43:34.229Z","etag":null,"topics":["docker","fastapi","nextjs","nx","nx-monorepo","python"],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/lorenzotabasso.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","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":"2025-08-06T20:35:48.000Z","updated_at":"2025-08-31T20:24:58.000Z","dependencies_parsed_at":null,"dependency_job_id":"43cd7be3-13e7-4273-8dcf-c645f86cfc9b","html_url":"https://github.com/lorenzotabasso/repeatio","commit_stats":null,"previous_names":["lorenzotabasso/repeatio"],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/lorenzotabasso/repeatio","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lorenzotabasso%2Frepeatio","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lorenzotabasso%2Frepeatio/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lorenzotabasso%2Frepeatio/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lorenzotabasso%2Frepeatio/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/lorenzotabasso","download_url":"https://codeload.github.com/lorenzotabasso/repeatio/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lorenzotabasso%2Frepeatio/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32508901,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-30T13:12:12.517Z","status":"online","status_checked_at":"2026-05-01T02:00:05.856Z","response_time":64,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":["docker","fastapi","nextjs","nx","nx-monorepo","python"],"created_at":"2025-08-29T16:48:56.741Z","updated_at":"2026-05-01T18:32:50.320Z","avatar_url":"https://github.com/lorenzotabasso.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Repeatio\n\nOne day, **a friend of mine asked me** if I knew of a **quick and smart way** to get an **audio track to listen to and repeat in order to learn a foreign language** (at least the basics). I replied that I didn't know of any such software, but that if he gave me some time, **I could create it for him**. And that's how **Repetio was born**.\n\n*Modern language learning with repetition.* Nx monorepo with **Next.js** frontend and **FastAPI** backend.\n\n- Frontend docs: `apps/frontend/README.md`\n- Backend docs: `apps/backend/README.md`\n\n## Quick Start\n\n### Using Docker (recommended)\n\n```bash\ngit clone https://github.com/lorenzotabasso/repeatio.git \u0026\u0026\ncd repeatio \u0026\u0026\ndocker compose up -d --build \u0026\u0026\ndocker compose logs -f\n```\n\n### Local run\n\n#### Manually without Docker\n\n```bash\n# Backend\ncd apps/backend \u0026\u0026 pip install -r requirements.txt \u0026\u0026 python main.py\n\n# Frontend\ncd apps/frontend \u0026\u0026 npm install \u0026\u0026 npm run dev\n```\n\n#### Using Nx\n\n```bash\nnpm install \u0026\u0026\nnx serve backend \u0026\u0026 \nnx serve frontend \u0026\u0026\n```\n\n## Access\n\n- **Frontend**: [http://localhost:3000](http://localhost:3000)\n- **Backend API**: [http://localhost:8000](http://localhost:8000)\n- **API Docs (OpenAPI)**: [http://localhost:8000/docs](http://localhost:8000/docs)\n\n## Useful Commands\n\n### Root (workspace)\n\n```bash\n# Docker lifecycle\nnpm run docker:build\nnpm run docker:up\nnpm run docker:down\nnpm run docker:build-all\nnpm run docker:logs\n\n# Nx workspace scripts\nnpm run build\nnpm run serve\nnpm run dev\nnpm run test\nnpm run lint\n```\n\n### Per app (using Nx)\n\n```bash\n# Frontend\nnx serve frontend\nnx build frontend\nnx lint frontend\n\n# Backend\nnx serve backend\nnx lint backend\n```\n\n## API (essentials)\n\n- POST `/api/v1/audio/csv-to-audio` – CSV to audio\n- POST `/api/v1/audio/text-to-audio` – Single text to audio\n- GET `/api/v1/audio/files` – List files\n- GET `/api/v1/audio/download/{filename}` – Download\n- DELETE `/api/v1/audio/files/{filename}` – Delete\n\nSee full reference at [http://localhost:8000/docs](http://localhost:8000/docs)\n\n## Enviroment configs\n\n- Frontend: `NEXT_PUBLIC_API_URL` (default [http://localhost:8000](http://localhost:8000))\n- Backend: `UPLOAD_DIR`, `OUTPUT_DIR`, `DEFAULT_PAUSE_DURATION`, `DEFAULT_SILENCE_DURATION`\n\n## Troubleshooting (quick)\n\n```bash\n# Ports busy\nlsof -i :3000; lsof -i :8000\ndocker compose down\n\n# Rebuild without cache\ndocker compose build --no-cache\n\n# Logs / status\ndocker compose logs -f\ndocker compose ps\n```\n\n## License \u0026 Contributing\n\nMIT. See `LICENSE`. PRs welcome.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Florenzotabasso%2Frepeatio","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Florenzotabasso%2Frepeatio","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Florenzotabasso%2Frepeatio/lists"}