Skip to content

AyushRay06/Dr-Doom

Folders and files

NameName
Last commit message
Last commit date

Latest commit

38622bf · Feb 1, 2025

History

58 Commits
Aug 10, 2024
Aug 12, 2024
Aug 3, 2024
Aug 5, 2024
Aug 5, 2024
Aug 7, 2024
Jul 30, 2024
Jul 31, 2024
Feb 1, 2025
Jul 30, 2024
Aug 2, 2024
Jul 31, 2024
Aug 2, 2024
Aug 8, 2024
Aug 8, 2024
Jul 30, 2024
Aug 4, 2024
Jul 30, 2024

Repository files navigation

Dr Doom - AI Content Generator

This SaaS application allows users to generate images, music, videos, and code. It also features a chatbot that answers queries. The application leverages the OpenAI API and Replicate AI for content generation. Crisp powers integrated customer support, and Clerk handles user authentication.

Features

  • Content Generation: Generate images, music, videos, and code using the power of OpenAI and Replicate AI APIs.
  • Chatbot: A chatbot is available for users to ask queries and get answers.
  • User Authentication: Secure user login and management via Clerk.
  • Customer Support: Instant customer support via Crisp's live chat feature.
  • Subscription Model: Free access for 3 tries, followed by a subscription model using Stripe for payment processing.
  • Modern UI: A responsive, user-friendly interface built with TailwindCSS and ShadCN UI.

Tech Stack

  • Frontend: Next.js, Typescript, TailwindCSS, ShadCN UI, Framer-Motion
  • Backend: Node.js (Next.js API routes), Prisma ORM
  • Database: PostgreSQL
  • Authentication: Clerk
  • Payment Integration: Stripe
  • Customer Support: Crisp
  • AI Content Generation: OpenAI API, Replicate AI

Setup Instructions

Prerequisites

  1. Ensure you have Node.js installed.
  2. Make sure you have a PostgreSQL database set up and running.
  3. Create accounts for the following services and set up the necessary API keys:

Installation

  1. Clone the repository:
    git clone https://github.com/AyushRay06/Dr-Doom.git
    
  2. Install dependencies:
    cd <project_directory>
    npm install
  3. Set up environment variables: Create a .env.local file in the root of the project and add the following:
  NEXT_PUBLIC_OPENAI_API_KEY=your_openai_api_key
  NEXT_PUBLIC_REPLICATE_API_KEY=your_replicate_api_key
  CLERK_FRONTEND_API=your_clerk_frontend_api
  CLERK_API_KEY=your_clerk_api_key
  STRIPE_SECRET_KEY=your_stripe_secret_key
  CRISP_WEBSITE_ID=your_crisp_website_id
  DATABASE_URL=your_postgresql_connection_string
  1. Run migrations (using Prisma):
    npx prisma migrate dev
  1. Start the development server:
   npm run dev

You can further customize the setup and add more specific details as needed.