-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
45 lines (40 loc) · 1.68 KB
/
.env.example
File metadata and controls
45 lines (40 loc) · 1.68 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
# ============================================================================
# adoboards - Environment Variable Secrets Backend
# ============================================================================
#
# NOT RECOMMENDED for daily use on your machine.
# Env vars sit in plain text in your shell profile or .env file - anyone with
# read access to your home directory (or a shoulder behind you) can see them.
#
# Use this ONLY for:
# - CI/CD pipelines (GitHub Actions, Azure Pipelines, Jenkins, etc.)
# - Headless Linux servers with no GUI for KeePassXC
# - Docker containers
# - Quick testing (switch back to KeePass after)
#
# For daily use, KeePass is strongly recommended:
# adoboards config --secrets keepass
#
# HOW TO USE:
# 1. Copy this file: cp .env.example .env
# 2. Fill in your actual values below
# 3. Switch adoboards to env backend: adoboards config --secrets env
#
# OR export them directly in your shell (no .env file needed):
# export ADOBOARDS_ADO_PAT="your-pat-here"
# export ADOBOARDS_ANTHROPIC_KEY="sk-ant-..."
#
# ============================================================================
# Azure DevOps Personal Access Token (REQUIRED)
# Get it from: https://dev.azure.com/YOUR_ORG/_usersSettings/tokens
# Scopes needed: Work Items -> Read & Write
ADOBOARDS_ADO_PAT=
# AI Provider API Keys (only the one you use)
# Anthropic Claude: https://console.anthropic.com/settings/keys
ADOBOARDS_ANTHROPIC_KEY=
# OpenAI ChatGPT: https://platform.openai.com/api-keys
ADOBOARDS_OPENAI_KEY=
# Google Gemini: https://aistudio.google.com/apikey
ADOBOARDS_GEMINI_KEY=
# Azure OpenAI Service: Azure Portal -> your OpenAI resource -> Keys and Endpoint
ADOBOARDS_AZURE_OPENAI_KEY=