Documentation

Installation Guide

Get PrepTalk up and running in minutes.

Installation & Setup

Welcome to PrepTalk. This guide will walk you through setting up the platform for your organization.

Prerequisites

  • Node.js 18.0 or higher
  • PostgreSQL database
  • SendGrid API Key
  • OpenAI API Key

Quick Start

  1. Clone the repository

    git clone https://github.com/preptalk/platform.git
    cd platform
    
  2. Install dependencies

    npm install
    
  3. Configure Environment Create a .env file in the root directory:

    DATABASE_URL="postgresql://user:pass@localhost:5432/preptalk"
    OPENAI_API_KEY="sk-..."
    SENDGRID_API_KEY="SG..."
    
  4. Run the Server

    npm run dev
    

Your application should now be running at http://localhost:3000.