This guide will help you get up and running with ConcourseGPT quickly.
Before installing ConcourseGPT, ensure you have:
- Bash 4.0 or higher
- Python 3.7 or higher
- curl
- yq command line tool
- MkDocs and MkDocs-Material (for documentation)
- Access to an LLM API endpoint
# Using Homebrew
brew install python3 yq
brew install mkdocs mkdocs-material
# Update package list
sudo apt update
# Install dependencies
sudo apt install python3 curl
pip install yq
# Install EPEL repository
sudo yum install epel-release
# Install dependencies
sudo yum install python3 curl
pip install yq
- Clone the repository:
git clone https://github.com/jmcdice/concourse-gpt.git
cd concourse-gpt
- Setup python virtual env
python3 -m venv .venv
source .venv/bin/activate
- Install MkDocs and MkDocs-Material (if not installed globally):
pip install mkdocs mkdocs-material
- (Optional) Add to your PATH:
# Add to your ~/.bashrc or ~/.zshrc
export PATH="$PATH:/path/to/concourse-gpt/bin"
ConcourseGPT requires access to an LLM API. Configure your environment with:
export LLM_API_BASE="your-llm-api-endpoint"
export LLM_MODEL="your-model-name"
export LLM_TOKEN="your-api-token"
Add these to your shell's rc file (e.g., ~/.bashrc or ~/.zshrc) to make them permanent.
- Generate documentation for a pipeline:
concourse-gpt generate path/to/pipeline.yml
- Generate an overview README for all documented pipelines:
concourse-gpt gen-readme
- Build and view the documentation site:
concourse-gpt build-site
concourse-gpt serve
Your documentation will be available at http://127.0.0.1:8000
- Read the Usage Guide for detailed instructions
- Check out the Examples to see sample outputs
- Learn about Configuration options