module
0.0.0-20241109212515-d4c902c08a16
Repository: https://github.com/triangleside/codebaseai.git
Documentation: pkg.go.dev
# README
CodebaseAI
CodebaseAI is designed to help you chat with AI on your entire codebase.
Prerequisites
GoLang
Go to https://go.dev/doc/install to install GoLang.
OpenAI API Key
Go to https://platform.openai.com/account/api-keys and get a key.
Node.js and NPM
Go to https://nodejs.org/en/download/ and follow the instructions.
Running the Project
This project is composed of a backend API and some front-end components.
Backend
Export the following environment variables to run the project:
export API_KEY=your_openai_api_key
Run the API using go in terminal:
go run cmd/server/main.go
Frontend
Run the following in a separate terminal:
npm install
npm start