Minimalist podcast publishing platform, mostly a pretext to post garbage from IRC.
Go to file
2023-05-13 02:24:40 +02:00
bin Add webapp packages 2023-05-05 21:48:32 +02:00
config Work in progress… 2023-05-11 17:03:52 +02:00
migrations Add an episode from Youtube over the command-line 2023-05-13 00:28:27 +02:00
public Work in progress… 2023-05-11 17:03:52 +02:00
src Fix relative logo URL not showing up 2023-05-13 02:24:40 +02:00
templates Work in progress… 2023-05-11 17:03:52 +02:00
tests Add webapp packages 2023-05-05 21:48:32 +02:00
translations Add webapp packages 2023-05-05 21:48:32 +02:00
.env Work in progress… 2023-05-11 17:03:52 +02:00
.env.test Add webapp packages 2023-05-05 21:48:32 +02:00
.gitignore Work in progress… 2023-05-11 17:03:52 +02:00
.phpactor.json Work in progress… 2023-05-11 17:03:52 +02:00
composer.json Work in progress… 2023-05-11 17:03:52 +02:00
composer.lock Work in progress… 2023-05-11 17:03:52 +02:00
docker-compose.override.yml Add webapp packages 2023-05-05 21:48:32 +02:00
docker-compose.yml Add webapp packages 2023-05-05 21:48:32 +02:00
phpunit.xml.dist Add webapp packages 2023-05-05 21:48:32 +02:00
psalm.xml Work in progress… 2023-05-11 17:03:52 +02:00
README.md Add basic readme 2023-05-13 02:08:57 +02:00
symfony.lock Work in progress… 2023-05-11 17:03:52 +02:00

LSBC

A small platform to create podcasts and episodes, host the audio files and share the RSS feed, with external sources download abilities.

Install

This project requires:

  • PHP 8
  • PostgreSQL 15 and its PHP driver

For production:

  1. Clone the repository.
  2. Setup your web server to use PHP-FPM (root is ./public).
  3. Create the production config file: composer dump-env prod. Set a proper app secret.
  4. Create a database and its owner, then set appropriate database credentials in the config file.
  5. Install dependencies: composer install --no-dev.
  6. Apply database migrations: php bin/console doctrine:migrations:migrate