-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
26 lines (21 loc) · 964 Bytes
/
.env.example
File metadata and controls
26 lines (21 loc) · 964 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
# Re:Earth CMS Integration API Configuration
REEARTH_CMS_INTEGRATION_API_BASE_URL=cms_integration_api_base_url
REEARTH_CMS_INTEGRATION_API_ACCESS_TOKEN=your_cms_integration_access_token
# Data Source Configuration
REEARTH_CMS_WORKSPACE_ID=your_workspace_id
REEARTH_CMS_PROJECT_ID=your_project_id
REEARTH_CMS_MODEL_ID=your_model_id
# API Authentication
API_SECRET_KEY=your_api_secret_key
# Response Field Filtering (Optional)
# Comma-separated list of fields to include in API responses
# If not set, all fields from CMS will be returned
RESPONSE_FIELDS=title,description,createdAt
# Data Filtering Conditions (Optional)
# Specify conditions to filter the data retrieved from CMS
# Example: REEARTH_CMS_DATA_FILTERS=status===published|reviewed;category===news
FILTERS=your_filter_conditions
# CORS Configuration
# Set to null to allow all origins (recommended for plugin integration)
# Or specify a specific origin like: https://yourdomain.com
CORS_ORIGIN=null