-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.template
More file actions
76 lines (62 loc) · 2.84 KB
/
.env.template
File metadata and controls
76 lines (62 loc) · 2.84 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
# ============================================================================
# Workflows Engine Environment Configuration
# ============================================================================
# Copy this file to .env and fill in your values.
# CLI arguments take precedence over environment variables.
# ============================================================================
# ----------------------------------------------------------------------------
# Connection Settings (Required for validation and execution)
# ----------------------------------------------------------------------------
# CARTO connection name for schema-based validation and SQL execution
# CLI flag: --connection
WORKFLOWS_CONNECTION=
# Temp location for intermediate tables (e.g., project.dataset for BigQuery)
# CLI flag: --temp-location
# Default: temp
WORKFLOWS_TEMP_LOCATION=
# ----------------------------------------------------------------------------
# Analytics Toolbox Settings
# ----------------------------------------------------------------------------
# Location of CARTO Analytics Toolbox
# CLI flag: --analytics-toolbox
# Defaults by provider:
# - BigQuery: carto-un.carto
# - Snowflake: CARTO.CARTO
# - Redshift: carto
# - Postgres: carto
# - Databricks: carto_analytics_toolbox
WORKFLOWS_ANALYTICS_TOOLBOX=
# ----------------------------------------------------------------------------
# CARTO API Settings (Required for geocoding, isolines, routing components)
# ----------------------------------------------------------------------------
# CARTO access token for API calls
# CLI flag: --access-token
# Can be obtained from CARTO dashboard or `carto auth token`
WORKFLOWS_ACCESS_TOKEN=
# CARTO API base URL
# CLI flag: --api-base-url
# Default: https://gcp-us-east1.api.carto.com
WORKFLOWS_API_BASE_URL=
# ----------------------------------------------------------------------------
# BigQuery-Specific Settings
# ----------------------------------------------------------------------------
# BigQuery project ID (usually inferred from connection)
# CLI flag: --bq-project
WORKFLOWS_BQ_PROJECT=
# BigQuery region
# CLI flag: --bq-region
WORKFLOWS_BQ_REGION=
# ----------------------------------------------------------------------------
# Data Export Settings
# ----------------------------------------------------------------------------
# Default GCS bucket for data exports
# CLI flag: --gcs-bucket
WORKFLOWS_GCS_BUCKET=
# ============================================================================
# Test Configuration Defaults (used in workflows-engine test suite)
# ============================================================================
# analyticsToolboxDataset: carto-un.carto
# tempLocation: temp
# workspaceLocation: workspace
# extensionsLocation: extensions
# ============================================================================