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
-
Clone the repository
git clone https://github.com/preptalk/platform.git cd platform -
Install dependencies
npm install -
Configure Environment Create a
.envfile in the root directory:DATABASE_URL="postgresql://user:pass@localhost:5432/preptalk" OPENAI_API_KEY="sk-..." SENDGRID_API_KEY="SG..." -
Run the Server
npm run dev
Your application should now be running at http://localhost:3000.
