A dev advisor to ask about your code and project
You can start developing on this project by using .
Or you can run it locally. You will need to have
- Docker
- Docker Compose
- pnpm
- Node.js installed.
You need an OpenAI API key to run the project. You can get one by signing up at OpenAI.
And you need a Github OAuth app to run the project. You can create one at Github Developer Settings.
Enter the OpenAI API key and Github OAuth app credentials in the .env
file. You can use the .env.sample
file as a template.
Start the project by running the following commands:
# start vectorstore
docker-compose up -d
# install dependencies and set up the database
pnpm install
pnpm db:up
# start the server
pnpm start
- To generate new migrations run:
pnpm db:generate
- To migrate the database and seed it run:
pnpm db:up
- To open the database explorer run:
pnpm db:explorer