Skip to content

Latest commit

 

History

History
101 lines (80 loc) · 2.04 KB

getting-started.md

File metadata and controls

101 lines (80 loc) · 2.04 KB

Getting Started with ConcourseGPT

This guide will help you get up and running with ConcourseGPT quickly.

Prerequisites

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

Installing Prerequisites

macOS

# Using Homebrew
brew install python3 yq
brew install mkdocs mkdocs-material

Ubuntu/Debian

# Update package list
sudo apt update
# Install dependencies
sudo apt install python3 curl
pip install yq

RHEL/CentOS

# Install EPEL repository
sudo yum install epel-release
# Install dependencies
sudo yum install python3 curl
pip install yq

Installation

  1. Clone the repository:
git clone https://github.com/jmcdice/concourse-gpt.git
cd concourse-gpt
  1. Setup python virtual env
python3 -m venv .venv
source .venv/bin/activate
  1. Install MkDocs and MkDocs-Material (if not installed globally):
pip install mkdocs mkdocs-material
  1. (Optional) Add to your PATH:
# Add to your ~/.bashrc or ~/.zshrc
export PATH="$PATH:/path/to/concourse-gpt/bin"

Configuration

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.

First Steps

  1. Generate documentation for a pipeline:
concourse-gpt generate path/to/pipeline.yml
  1. Generate an overview README for all documented pipelines:
concourse-gpt gen-readme
  1. 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

Next Steps