-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
40 lines (31 loc) · 916 Bytes
/
.env.example
File metadata and controls
40 lines (31 loc) · 916 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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
# Contentful Configuration
# Copy this file to .env and fill in your actual values
# Source Space (for export)
SOURCE_SPACE_ID=your_source_space_id
SOURCE_MANAGEMENT_TOKEN=CFPAT-your_source_management_token
# Target Space (for import)
TARGET_SPACE_ID=your_target_space_id
TARGET_MANAGEMENT_TOKEN=CFPAT-your_target_management_token
# Environment (usually 'master')
ENVIRONMENT_ID=master
# API Host
# For US region: api.contentful.com
# For EU region: api.eu.contentful.com
API_HOST=api.contentful.com
# Export/Import directories
EXPORT_DIR=./contentful-export
BATCHES_DIR=./batches
# Batch Configuration
BATCH_SIZE=400
# Rate Limiting
RATE_LIMIT_REQUESTS_PER_SECOND=10
RATE_LIMIT_REQUESTS_PER_HOUR=36000
# Import Options
SKIP_CONTENT_PUBLISHING=true
UPLOAD_ASSETS=true
SKIP_ASSET_UPDATES=false
SKIP_CONTENT_UPDATES=false
# Delays (in milliseconds)
DELAY_BETWEEN_BATCHES=180000
RETRY_DELAY=5000
MAX_RETRIES=3