feat: moving environment files to use .env and updating podcast seeder

This commit is contained in:
2023-06-23 17:38:44 -05:00
parent 8eb4d14909
commit b275915c21
5 changed files with 75 additions and 13 deletions

View File

@@ -115,6 +115,23 @@ class PodcastSeeder extends Seeder
$feed = 'https://hogstory.net/feed/podcast';
$added = '2019-02-22 20:00:00';
$this->createPodcast($name, $description, $website, $slug, $feed, $added);
$name = 'Rare Encounter';
$description = 'AbleKirby and coldacid converse on anime they watch, books and manga they read, games they play,
and all the tech stuff that they come across.';
$website = 'http://rareencounter.net';
$slug = 'rare-encounter';
$feed = 'https://rareencounter.net/external.php?name=RSS';
$added = '2020-07-16 20:00:00';
$this->createPodcast($name, $description, $website, $slug, $feed, $added);
$name = 'Unrelenting';
$description = 'The Unrelenting Podcast is hosted by Gene Naftulvev and Darren ONeill. It covers politics, technology, pop-culture, and more!';
$website = 'http://unrelenting.show';
$slug = 'unrelenting';
$feed = 'https://www.unrelenting.show/feed/podcast/';
$added = '2021-10-29 20:00:00';
$this->createPodcast($name, $description, $website, $slug, $feed, $added);
}