feat: moving environment files to use .env and updating podcast seeder
This commit is contained in:
@@ -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 O’Neill. 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);
|
||||
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user