-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
46 lines (40 loc) · 1.55 KB
/
Copy path.env.example
File metadata and controls
46 lines (40 loc) · 1.55 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
# Windmill Instance Configuration
# Your primary Windmill instance for MCP server usage
WINDMILL_BASE_URL=https://your-instance.windmill.dev
WINDMILL_API_TOKEN=your-api-token-here
# Generator Configuration
# URL to fetch Windmill OpenAPI specification
OPENAPI_SPEC_URL=https://app.windmill.dev/api/openapi.json
# Backup/alternative spec URL
OPENAPI_SPEC_BACKUP_URL=https://raw.githubusercontent.com/windmill-labs/windmill/main/openapi.json
# Directory where generated code will be output
GENERATOR_OUTPUT_DIR=./src
# Testing Configuration
# Timeout for test operations (in milliseconds)
TEST_TIMEOUT=30000
# Windmill instance for testing (can be same as primary or separate test instance)
TEST_WINDMILL_URL=https://test-instance.windmill.dev
TEST_WINDMILL_TOKEN=test-token-here
# Test workspace to use
TEST_WORKSPACE=test-workspace
# E2E Testing (Docker-based)
# URL for E2E tests with local Docker instance
E2E_WINDMILL_URL=http://localhost:8000
# API token for E2E tests (generate from Windmill UI)
E2E_WINDMILL_TOKEN=your-e2e-token-here
# Workspace for E2E tests
E2E_WORKSPACE=demo
# Agent Behavior Configuration
# Automatically apply overrides after generation
AUTO_APPLY_OVERRIDES=true
# Run validation before committing changes
VALIDATE_BEFORE_COMMIT=true
# Run tests after generation
RUN_TESTS_ON_GENERATE=false
# Verbose logging
VERBOSE=false
# Optional: GitHub Token for fetching specs from GitHub
# GITHUB_TOKEN=your-github-token
# Optional: Custom openapi-mcp-generator settings
# GENERATOR_TEMPLATE_DIR=./generator/templates
# GENERATOR_CONFIG_PATH=./generator/config.json