-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy path.env.template
More file actions
32 lines (25 loc) · 940 Bytes
/
Copy path.env.template
File metadata and controls
32 lines (25 loc) · 940 Bytes
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
# Environment Variables Template
# Copy this file to ~/.env and customize as needed
# This file is sourced by sh/profile
# Rust Compiler Cache (sccache)
# Automatically set in sh/profile if sccache is installed
# export RUSTC_WRAPPER=sccache
# Encrypted Repository Configuration (for setup-encrypted-repo script)
# Base directory for encrypted repositories
# export ENCRYPTED_REPO_BASE="$HOME/encrypted-repos"
# GPG key ID for encryption/signing (used by setup-encrypted-repo)
# Find your key with: gpg --list-secret-keys --keyid-format=long
export ENCRYPTED_REPO_GPG_KEY="6DAE70CE5C232C03"
# API Keys
# export OPENAI_API_KEY=""
# export ANTHROPIC_API_KEY=""
# export GEMINI_API_KEY=""
# export KAGI_API_KEY=""
# JIRA Configuration
# export JIRA_API_TOKEN=""
# export JIRA_URL=""
# export JIRA_USERNAME=""
# Build/Development Options
# export PULUMI_SKIP_UPDATE_CHECK=1
# Custom PATH additions
# export PATH="$HOME/custom/bin:$PATH"