Skip to content

Latest commit

 

History

History
57 lines (39 loc) · 891 Bytes

File metadata and controls

57 lines (39 loc) · 891 Bytes
title weight
Docker Compose
1

Prerequisites

  • Docker and Docker Compose v2

Clone the repository

git clone https://github.com/crestalnetwork/intentkit.git
cd intentkit

Configure environment

cp .env.example .env

Edit .env and set at least:

  • OPENAI_API_KEY

Optional overrides if you want custom database credentials or ports:

  • POSTGRES_USER, POSTGRES_PASSWORD, POSTGRES_DB
  • AWS_S3_ACCESS_KEY_ID, AWS_S3_SECRET_ACCESS_KEY, AWS_S3_BUCKET

Start the stack

docker compose up -d

Verify services

docker compose ps
curl http://localhost:8000/health

Access endpoints

Stop the stack

docker compose down