{"id":18388331,"url":"https://github.com/cecilapp/staticast","last_synced_at":"2025-04-07T02:33:20.136Z","repository":{"id":40340207,"uuid":"271675005","full_name":"Cecilapp/staticast","owner":"Cecilapp","description":"The easiest way to publish your podcast.","archived":false,"fork":false,"pushed_at":"2024-03-12T11:00:20.000Z","size":12077,"stargazers_count":10,"open_issues_count":0,"forks_count":3,"subscribers_count":2,"default_branch":"master","last_synced_at":"2024-04-13T21:48:29.880Z","etag":null,"topics":["cecil","cecil-starter","podcast","static-site"],"latest_commit_sha":null,"homepage":"https://staticast.cecil.app","language":"CSS","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Cecilapp.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},"funding":{"github":"ArnaudLigny","open_collective":"cecil"}},"created_at":"2020-06-12T00:43:58.000Z","updated_at":"2024-01-04T13:53:53.000Z","dependencies_parsed_at":"2023-01-21T04:14:07.665Z","dependency_job_id":"bc30e048-19cb-4d6f-944f-319330f02f15","html_url":"https://github.com/Cecilapp/staticast","commit_stats":{"total_commits":441,"total_committers":2,"mean_commits":220.5,"dds":0.02947845804988658,"last_synced_commit":"7e34b743ce071199ddccdef0df6455b94f2e7279"},"previous_names":[],"tags_count":1,"template":true,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Cecilapp%2Fstaticast","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Cecilapp%2Fstaticast/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Cecilapp%2Fstaticast/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Cecilapp%2Fstaticast/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Cecilapp","download_url":"https://codeload.github.com/Cecilapp/staticast/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247583107,"owners_count":20961970,"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","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":["cecil","cecil-starter","podcast","static-site"],"created_at":"2024-11-06T01:33:46.634Z","updated_at":"2025-04-07T02:33:20.114Z","avatar_url":"https://github.com/Cecilapp.png","language":"CSS","funding_links":["https://github.com/sponsors/ArnaudLigny","https://opencollective.com/cecil"],"categories":[],"sub_categories":[],"readme":"# Staticast\n\n_Staticast_ is a ready to use Progressive Web App to publish your podcast, with a RSS feed ready for syndication platforms, and a user friendly CMS.\n\n[![Staticast screenshot](/docs/screenshot.png)](https://staticast.cecil.app)\n\n## Installation\n\n### Manually\n\n_Staticast_ is a website generated by [Cecil](https://cecil.app), so you need to download and run Cecil to build your website, then you can publish it where you want.\n\n1. Be sure PHP (\u003e=8.1) is available on your OS\n2. [Download _Staticast_](https://github.com/Cecilapp/staticast/archive/master.zip) and install themes with `composer install` or run `composer create-project cecil/staticast myproject`\n3. [Download `cecil.phar`](https://github.com/Cecilapp/Cecil/releases/latest/download/cecil.phar) and move it to the root of _Staticast_\n\n### Automatically\n\nUse the button to get your own copy of the repository on [Netlify](https://www.netlify.com).\n\n[![Deploy to Netlify](https://www.netlify.com/img/deploy/button.svg)](https://app.netlify.com/start/deploy?repository=https://github.com/Cecilapp/staticast\u0026stack=cms)\n\nThis will setup everything needed for running your website, with a CMS:\n\n- A new repository in your GitHub account\n- Continuous Deployment to Netlify's CDN\n- Control users and access with Netlify Identity\n- Manage content with Netlify CMS\n\n## Usage\n\n### Create a new episode\n\n1. Add the MP3 file in `assets` directory\n2. Create a new Markdown file in `pages/episodes`\n\nExample (`1.md`):\n\n```yaml\n---\ntitle: \"Episode #1\"\nepisode:\n  file: episode-1.mp3\n---\nShort description of the episode.\n\u003c!-- break --\u003e\nNotes of the episode.\n```\n\nRefer to _[Podcast component theme](https://github.com/Cecilapp/theme-podcast#usage)_ for advanced options.\n\n### Preview\n\nRun the following command:\n\n```bash\nphp cecil.phar serve --open\n```\n\n### Publish\n\n1. Run `php cecil.phar build`\n2. Copy `_site` folder to your web server\n\n### Configuration\n\nEdit the [`config.yml`](https://github.com/Cecilapp/staticast/blob/master/config.yml) file, and more precisely the `podcast` section.\n\n\u003e For details, please refer to the [Cecil documentation](https://cecil.app/documentation/configuration/).\n\n## Development\n\n_Staticast_ use [Tailwind CSS](https://tailwindcss.com) so you can customize the stylesheet with the following files:\n\n- Configuration: [`tailwind.config.js`](tailwind.config.js)\n- CSS: [`assets/tailwind.css`](assets/tailwind.css)\n\n```bash\n# install\ncomposer install\nnpm install\n# build CSS\nnpx tailwindcss -i ./assets/tailwind.css -o ./assets/styles.css --watch\n# serve\nphp cecil.phar serve -v --config=config/dev.yml\n```\n\n## License\n\n_Staticast_ is a free software distributed under the terms of the MIT license.\n\n© [Arnaud Ligny](https://arnaudligny.fr)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcecilapp%2Fstaticast","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcecilapp%2Fstaticast","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcecilapp%2Fstaticast/lists"}