{"id":30420292,"url":"https://github.com/rictic/glowtalk","last_synced_at":"2025-08-22T08:18:03.441Z","repository":{"id":300665932,"uuid":"895807827","full_name":"rictic/glowtalk","owner":"rictic","description":null,"archived":false,"fork":false,"pushed_at":"2025-06-23T00:38:05.000Z","size":966,"stargazers_count":0,"open_issues_count":2,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-06-23T01:29:27.232Z","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/rictic.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":"2024-11-29T00:25:09.000Z","updated_at":"2025-06-23T00:38:09.000Z","dependencies_parsed_at":"2025-06-23T01:39:42.086Z","dependency_job_id":null,"html_url":"https://github.com/rictic/glowtalk","commit_stats":null,"previous_names":["rictic/glowtalk"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/rictic/glowtalk","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rictic%2Fglowtalk","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rictic%2Fglowtalk/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rictic%2Fglowtalk/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rictic%2Fglowtalk/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/rictic","download_url":"https://codeload.github.com/rictic/glowtalk/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rictic%2Fglowtalk/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":271606605,"owners_count":24788981,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-08-22T02:00:08.480Z","response_time":65,"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":[],"created_at":"2025-08-22T08:18:02.986Z","updated_at":"2025-08-22T08:18:03.434Z","avatar_url":"https://github.com/rictic.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# GlowTalk\n\nGenerate audiobooks for glowfics\n\n## Installation\n\n```bash\nuv pip install glowtalk\n```\n\n## Usage\n\n```bash\nglowtalk\n```\n\n## Development with Nix\n\nNix can be used to provide a consistent and reproducible development environment with all necessary dependencies.\n\n**1. Install Nix:**\n\nIf you don't have Nix installed, follow the official installation guide: [Nix Installation Guide](https://nixos.org/download.html).\n\n**2. Enter the Development Shell:**\n\nOnce Nix is installed, navigate to the project's root directory and run:\n\n```bash\nnix develop\n```\nThis command will build the environment if it's the first time or if dependencies have changed, and then drop you into a shell with all project dependencies available. If you have direnv installed and configured for Nix, you can often just `cd` into the directory.\n\n**3. Using the Environment:**\n\nInside the Nix shell, the following tools (and others specified in `shell.nix`) are available in your PATH:\n*   `python` (version 3.11)\n*   `pytest`\n*   `node` (version 20.x)\n*   `esbuild`\n\n**4. Running Tests:**\n\nTo run the Python test suite:\n```bash\npytest\n```\n\n**5. Building the Project:**\n\nTo build the entire Python application using Nix (this will also build the frontend assets as part of the process):\n```bash\nnix build .#package\n```\nThe result will be a symlink named `result` in the project's root directory (e.g., `./result/bin/glowtalk`).\n\n**6. Frontend Development:**\n\nThe Nix environment also provides `node` and `esbuild` for frontend development. If you need to work on the frontend interactively (e.g., with live reloading), you can still use the npm scripts from within the Nix shell:\n```bash\ncd glowtalk/static\n# npm ci # Not strictly needed if esbuild is globally available via Nix\nnpm run watch\n```\nAlternatively, you can invoke `esbuild` directly as it's available in the Nix shell. The `npm run build` script for the frontend is effectively handled by the main `nix build .#package` command.\n\nTo install development dependencies and build the package:\n\n```bash\nuv venv\nsource .venv/bin/activate\nuv pip install hatch\nuv pip install -e .\n```\n\n## Frontend dev\n\nWe have a web based frontend. We check in a built version of the frontend so you only need to set up this environment if you want to make changes to it.\n\n```bash\n\ncd glowtalk/static # frontend is in here\n\n# install deps. only need to run this once\nnpm ci\n\n# Then run either:\n\nnpm run watch # starts a server that rebuilds on changes. run while developing\n\n# Or:\n\n# builds in prod mode, producing an optimized bundle. run before deploying\n# to make the site load and run faster\nnpm run build\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frictic%2Fglowtalk","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Frictic%2Fglowtalk","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frictic%2Fglowtalk/lists"}