File size: 207 Bytes
287a0bc
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
import { ChromaClient } from "../src/ChromaClient";

const PORT = process.env.PORT || "8000";
const URL = "http://localhost:" + PORT;

const chroma = new ChromaClient({ path: URL });

export default chroma;