Note
This repository is the frontend of the project. The backend is implemented in go using pocketbase as a framework and extending it. Link to Backend
- Have a package manager for node installed, in my case I perfer
bun
so the following steps will use bun. - Get an API key from the camb.ai dashboard (https://studio.camb.ai). And set the environment variable
CAMB_API_KEY
appropriately (e.g..env
file here) - Set the
NEXT_PUBLIC_PB_URL
env variable with the base URL for the hosted pocketbase endpoint. If developing locally, set it tohttp://localhost:8090
.
- Install the dependencies using
bun install
or the equivalent command of the package manager of choice. - Run the frontend using
bun run dev
or the equivalent command of the package manager of choice.
Warning
Docs for setting up the backend are WIP