-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathenv.example
More file actions
35 lines (30 loc) · 1.47 KB
/
env.example
File metadata and controls
35 lines (30 loc) · 1.47 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
# GitHub Personal Access Token (optional for public repos, required for private repos)
# Create at: https://github.com/settings/tokens
# Required scopes for public repos: none (can be left empty)
# Required scopes for private repos: repo
GITHUB_TOKEN=your_github_token_here
# Default GitHub owner and repo for simplified commands
# Find these in the GitHub repository URL
DEFAULT_GITHUB_OWNER=your_github_owner_here
DEFAULT_GITHUB_REPO=your_github_repo_here
# Google Workspace Authentication
# Option 1: Service Account (Recommended for server applications)
# Create at: https://console.cloud.google.com/iam-admin/serviceaccounts
# Download the JSON key and either:
# A) Set the entire JSON content as GOOGLE_SERVICE_ACCOUNT_KEY
GOOGLE_SERVICE_ACCOUNT_KEY={"type":"service_account","project_id":"..."}
# B) Or set the path to the JSON file
GOOGLE_SERVICE_ACCOUNT_FILE=/path/to/service-account-key.json
# Option 2: OAuth2 (For personal use)
# Create at: https://console.cloud.google.com/apis/credentials
GOOGLE_CLIENT_ID=your_client_id_here
GOOGLE_CLIENT_SECRET=your_client_secret_here
GOOGLE_TOKEN_FILE=.google-token.json
# Figma API Access
# Create at: https://www.figma.com/developers/api#access-tokens
# Go to Account Settings > Personal Access Tokens
FIGMA_ACCESS_TOKEN=figd_your_figma_token_here
# Optional: Default Figma team and project for simplified commands
# Find these IDs in Figma URLs or through the API
DEFAULT_FIGMA_TEAM_ID=your_team_id_here
DEFAULT_FIGMA_PROJECT_ID=your_project_id_here