Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/menathndgd/podifyr-saas-podcast-platform
Podifyr is a SaaS podcast platform built with Next.js, Shadcn UI, Tailwind CSS, and Clerk for user authentication. It leverages the OpenAI API for advanced features, Uploadstuff for file uploading, and Convex for real-time data management. A modern, user-friendly solution for creating, managing, and sharing podcasts.
https://github.com/menathndgd/podifyr-saas-podcast-platform
clerk convex nextjs openai-api saas-platform shadcn-ui tailwindcss uploadstuff
Last synced: 19 days ago
JSON representation
Podifyr is a SaaS podcast platform built with Next.js, Shadcn UI, Tailwind CSS, and Clerk for user authentication. It leverages the OpenAI API for advanced features, Uploadstuff for file uploading, and Convex for real-time data management. A modern, user-friendly solution for creating, managing, and sharing podcasts.
- Host: GitHub
- URL: https://github.com/menathndgd/podifyr-saas-podcast-platform
- Owner: MenathNDGD
- Created: 2024-10-14T17:10:36.000Z (2 months ago)
- Default Branch: main
- Last Pushed: 2024-10-18T18:41:03.000Z (2 months ago)
- Last Synced: 2024-10-20T08:24:17.461Z (2 months ago)
- Topics: clerk, convex, nextjs, openai-api, saas-platform, shadcn-ui, tailwindcss, uploadstuff
- Language: TypeScript
- Homepage: https://podifyr-saa-s-podcast-platform.vercel.app
- Size: 4.38 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
AI-Powered SaaS Podcast Platform
Podifyr is a SaaS podcast platform built with Next.js, Shadcn UI, Tailwind CSS, and Clerk for user authentication. It leverages the OpenAI API for advanced features, Uploadstuff for file uploading, and Convex for real-time data management. A modern, user-friendly solution for creating, managing, and sharing podcasts.
## 📋 Table of Contents
1. 🤖 [Introduction](#introduction)
2. ⚙️ [Tech Stack](#tech-stack)
3. 🔋 [Features](#features)
4. 🤸 [Quick Start](#quick-start)A cutting-edge AI-powered SaaS platform that enables users to create, discover, and enjoy podcasts with advanced features like text-to-audio conversion with multi-voice AI, podcast thumbnail Image generation and seamless playback.
- Next.js
- TypeScript
- Convex
- OpenAI
- Clerk
- ShadCN
- Tailwind CSS## 🔋 Features
🎯 **Robust Authentication**: Secure and reliable user login and registration system.
🎯 **Modern Home Page**: Showcases trending podcasts with a sticky podcast player for continuous listening.
🎯 **Discover Podcasts Page**: Dedicated page for users to explore new and popular podcasts.
🎯 **Fully Functional Search**: Allows users to find podcasts easily using various search criteria.
🎯 **Create Podcast Page**: Enables podcast creation with text-to-audio conversion, AI image generation, and previews.
🎯 **Multi Voice AI Functionality**: Supports multiple AI-generated voices for dynamic podcast creation.
🎯 **Profile Page**: View all created podcasts with options to delete them.
🎯 **Podcast Details Page**: Displays detailed information about each podcast, including creator details, number of listeners, and transcript.
🎯 **Podcast Player**: Features backward/forward controls, as well as mute/unmute functionality for a seamless listening experience.
🎯 **Responsive Design**: Fully functional and visually appealing across all devices and screen sizes.
and many more, including code architecture and reusability.
Follow these steps to set up the project locally on your machine.
**Prerequisites**
Make sure you have the following installed on your machine:
- [Git](https://git-scm.com/)
- [Node.js](https://nodejs.org/en)
- [npm](https://www.npmjs.com/) (Node Package Manager)**Cloning the Repository**
```bash
git clone https://github.com/MenathNDGD/Podifyr-SaaS-Podcast-Platform.git
cd Podifyr-SaaS-Podcast-Platform
```**Installation**
Install the project dependencies using npm:
```bash
npm install
```**Set Up Environment Variables**
Create a new file named `.env.local` or `.env` in the root of your project and add the following content:
```env
# Convex
CONVEX_DEPLOYMENT=
NEXT_PUBLIC_CONVEX_URL=# Clerk
NEXT_PUBLIC_CLERK_PUBLISHABLE_KEY=
CLERK_SECRET_KEY=# Clerk Webhook
CLERK_WEBHOOK_SECRET=D# Clerk URLs
NEXT_PUBLIC_CLERK_SIGN_IN_URL="/sign-in"
NEXT_PUBLIC_CLERK_SIGN_UP_URL="/sign-up"# OpenAI
OPENAI_API_KEY=
```Replace the placeholder values with your actual Convex & Clerk credentials. You can obtain these credentials by signing up on the [Convex](https://www.convex.dev/) and [Clerk](https://clerk.com/) websites.
**Running the Project**
Run the development server for Node
```bash
npm run dev
```Run the development server for corvex
```bash
npx convex dev
```Open [http://localhost:3000](http://localhost:3000) in your browser to view the project.