Documentation
Learn how to use the Kaireon platform
Get Kaireon running locally in under 5 minutes.
Clone the repository
git clone https://github.com/kaireonai/platform.git cd platform
Install dependencies
npm install
Configure environment
.env
cp .env.example .env
DATABASE_URL
DATABASE_URL=postgresql://user:password@localhost:5432/kaireon
Initialize the database
npx prisma generate npx prisma db push
Start the platform
npm run dev