Skip to main content

Prerequisites

  • Node.js 18+
  • PostgreSQL database
  • npm or yarn

Setup

1

Clone the repository

git clone https://github.com/kaireonai/platform.git
cd platform
2

Install dependencies

npm install
3

Configure environment

Create a .env file with your database connection:
cp .env.example .env
Set your DATABASE_URL:
DATABASE_URL=postgresql://user:password@localhost:5432/kaireon
4

Initialize the database

npx prisma generate
npx prisma db push
5

Start the platform

npm run dev
Open http://localhost:3000 in your browser.

What’s Next?