https://github.com/roneoorg/staticast
https://github.com/roneoorg/staticast
Last synced: 12 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/roneoorg/staticast
- Owner: RoneoOrg
- License: mit
- Created: 2023-01-01T01:15:21.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2023-01-01T02:08:33.000Z (over 3 years ago)
- Last Synced: 2025-06-20T06:06:59.628Z (12 months ago)
- Language: CSS
- Size: 18.4 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Staticast
_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.
[](https://staticast.cecil.app)
## Installation
### Manually
_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.
1. Be sure PHP (>=7.4) is available on your OS
2. [Download _Staticast_](https://github.com/Cecilapp/staticast/archive/master.zip) and install themes with `composer install`
3. [Download `cecil.phar`](https://github.com/Cecilapp/Cecil/releases/latest/download/cecil.phar) and move it to the root of _Staticast_
### Automatically
Use the button to get your own copy of the repository on [Netlify](https://www.netlify.com).
[](https://app.netlify.com/start/deploy?repository=https://github.com/Cecilapp/staticast&stack=cms)
This will setup everything needed for running your website, with a CMS:
- A new repository in your GitHub account
- Continuous Deployment to Netlify's CDN
- Control users and access with Netlify Identity
- Manage content with Netlify CMS
## Usage
### Create a new episode
1. Add the MP3 file in `assets` directory
2. Create a new Markdown file in `pages/episodes`
Example (`1.md`):
```yaml
---
title: "Episode #1"
episode:
file: episode-1.mp3
---
Short description of the episode.
Notes of the episode.
```
Refer to _[Podcast component theme](https://github.com/Cecilapp/theme-podcast#usage)_ for advanced options.
### Preview
Run the following command:
```bash
php cecil.phar serve --open
```
### Publish
1. Run `php cecil.phar build`
2. Copy `_site` folder to your web server
### Configuration
Edit the [`config.yml`](https://github.com/Cecilapp/staticast/blob/master/config.yml) file, and more precisely the `podcast` section.
> For details, please refer to the [Cecil documentation](https://cecil.app/documentation/configuration/).
## Development
_Staticast_ use [Tailwind CSS](https://tailwindcss.com) so you can customize the stylesheet with the following files:
- Configuration: [`tailwind.config.js`](tailwind.config.js)
- CSS: [`assets/tailwind.css`](assets/tailwind.css)
```bash
# install
composer install
npm install
# build CSS
npx tailwindcss -i ./assets/tailwind.css -o ./assets/styles.css --watch
# serve
php cecil.phar serve -v --config=config/dev.yml
```
## License
_Staticast_ is a free software distributed under the terms of the MIT license.
© [Arnaud Ligny](https://arnaudligny.fr)