-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsecrets.bat.example
More file actions
40 lines (33 loc) · 1.4 KB
/
Copy pathsecrets.bat.example
File metadata and controls
40 lines (33 loc) · 1.4 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
@echo off
REM Secrets configuration file
REM Copy this file to secrets.bat and fill in your actual values
REM This file is gitignored and will not be committed
REM
REM You can place secrets.bat in either:
REM - The current folder (same directory as rebuild.bat)
REM - The parent folder (useful when WORK_FOLDER="." to keep secrets outside the mounted volume)
REM API Keys for AI coding agents
set ANTHROPIC_API_KEY=
set CLAUDE_CODE_OAUTH_TOKEN=
REM GitHub authentication
set GITHUB_TOKEN=
set GITHUB_USERNAME=
REM Azure DevOps PAT (Personal Access Token)
REM One PAT covers all projects/repos in the org it was created in.
REM Needs at least Code (Read) scope for git clone/fetch; Code (Read & Write) to push.
set AZURE_DEVOPS_PAT=
REM Optional: set to ONLY the org name (the "<org>" portion) if your repos use the
REM legacy URL format https://<org>.visualstudio.com/... -- do NOT include
REM ".visualstudio.com" or any other URL parts. Example: for
REM https://myorg.visualstudio.com/..., set AZURE_DEVOPS_ORG=myorg
REM Leave blank if you only use dev.azure.com URLs.
set AZURE_DEVOPS_ORG=
REM Git configuration
set GIT_USER_NAME=
set GIT_USER_EMAIL=
REM Beads server token. If set, the container entrypoint auto-starts
REM `bs serve` from the work folder on every container start (logs to /tmp/bs.log).
REM Leave blank to skip.
set BS_TOKEN=
REM Optional: Override auto-detected timezone
REM set TZ=America/New_York