Documentation Index
Fetch the complete documentation index at: https://docs.dari.dev/llms.txt
Use this file to discover all available pages before exploring further.
Create a dedicated manual org API key from a logged-in local checkout:
dari api-keys create --name github-actions
Store the returned api_key in your CI secret store as DARI_API_KEY.
GitHub Actions
name: Deploy Agent
on:
push:
branches:
- main
workflow_dispatch:
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: curl -fsSL https://raw.githubusercontent.com/mupt-ai/dari-cli/main/install.sh | bash
- run: dari deploy .
env:
DARI_API_KEY: ${{ secrets.DARI_API_KEY }}