forked from anton-abyzov/specweave
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
62 lines (56 loc) · 2.76 KB
/
Copy path.env.example
File metadata and controls
62 lines (56 loc) · 2.76 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
# SpecWeave Environment Variables
#
# IMPORTANT: This file is for EXTERNAL SERVICE CREDENTIALS ONLY!
# Framework configuration is in .specweave/config.json
#
# For SpecWeave framework developers:
# - Use GitHub token for SpecWeave repo sync
# - No need for JIRA/ADO unless testing those integrations
#
# For user projects:
# - Copy this to .env in YOUR PROJECT
# - Add credentials for whichever service you use (GitHub/Jira/ADO)
# ==============================================================================
# GitHub Integration (for GitHub Issues sync)
# ==============================================================================
# Get your token: https://github.com/settings/tokens
# Required scopes: repo (full control of private repositories)
#
GITHUB_TOKEN=your_github_token_here
# NOTE: GITHUB_OWNER and GITHUB_REPO are now in .specweave/config.json
# ==============================================================================
# Multi-Project Parent Repository (optional)
# ==============================================================================
# If you used -shared flag during init, ensure git remote also has -shared
# Validate: bash scripts/validate-parent-repo-setup.sh
#
# PARENT_REPO_NAME=
# ==============================================================================
# JIRA Integration (for JIRA Issues sync)
# ==============================================================================
# Get your token: https://id.atlassian.com/manage-profile/security/api-tokens
#
# JIRA_API_TOKEN=your_jira_token_here
# JIRA_EMAIL=your_email@company.com
# NOTE: JIRA_DOMAIN and other config are now in .specweave/config.json
# ==============================================================================
# Azure DevOps Integration (for Azure DevOps sync)
# ==============================================================================
# Get your token: https://dev.azure.com/yourorg/_usersSettings/tokens
# Required scopes: Work Items (Read, write, & manage)
#
AZURE_DEVOPS_PAT=your_azure_devops_pat_here
# NOTE: AZURE_DEVOPS_ORG and AZURE_DEVOPS_PROJECT are now in .specweave/config.json
# ==============================================================================
# NPM Publishing (for package maintainers)
# ==============================================================================
# Get your token: https://www.npmjs.com/settings/~/tokens
# Create "Automation" token type for CI/CD
#
# NPM_TOKEN=your_npm_token_here
# ==============================================================================
# Notes:
# ==============================================================================
# - All other configuration (language, auto_sync, etc.) is in .specweave/config.json
# - Model selection is per-agent/skill, not global
# - Never commit this file to git (.env is in .gitignore)