-
-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Expand file tree
/
Copy path.env.example
More file actions
20 lines (16 loc) · 751 Bytes
/
Copy path.env.example
File metadata and controls
20 lines (16 loc) · 751 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# Your Figma API access token
# Get it from your Figma account settings: https://www.figma.com/developers/api#access-tokens
FIGMA_API_KEY=your_figma_api_key_here
# Figma file key for testing
# This is the ID in your Figma URL: https://www.figma.com/file/{FILE_KEY}/filename
FIGMA_FILE_KEY=your_figma_file_key_here
# Figma node ID for Testing
# This is the node-id parameter in your Figma URL: ?node-id={NODE_ID}
FIGMA_NODE_ID=your_figma_node_id_here
# Server configuration
PORT=3333
# Output format: "tree", "yaml", or "json". Defaults to "tree" — it's the most
# compact (~half the size of yaml) and best for LLM consumers. Use "json" if a
# consumer parses it more reliably, or "yaml" for a more human-readable middle.
#
# OUTPUT_FORMAT="yaml"