forked from scratchfoundation/scratch-vm
-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy path.env.example
More file actions
34 lines (25 loc) · 927 Bytes
/
.env.example
File metadata and controls
34 lines (25 loc) · 927 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
# Smalruby3 scratch-vm Environment Variables
# Copy this file to .env and adjust values for local development
# Mesh V2 Extension Configuration
# AppSync GraphQL API Endpoint (Production)
# Example: https://xxxxx.appsync-api.ap-northeast-1.amazonaws.com/graphql
MESH_GRAPHQL_ENDPOINT=https://example.appsync-api.ap-northeast-1.amazonaws.com/graphql
# AppSync API Key (Production)
# Example: da2-xxxxx
MESH_API_KEY=da2-your-api-key
# AWS Region (Production)
# Example: ap-northeast-1
MESH_AWS_REGION=ap-northeast-1
# Data update interval in milliseconds
# Default: 1000
MESH_DATA_UPDATE_INTERVAL_MS=1000
# Event batch interval in milliseconds
# Default: 1000
MESH_EVENT_BATCH_INTERVAL_MS=1000
# Periodic data sync interval in milliseconds
# Default: 15000 (15 seconds)
MESH_PERIODIC_DATA_SYNC_INTERVAL_MS=15000
# Debug logging (comma-separated categories, e.g., scratch-vm:*)
DEBUG=
# Development server port
PORT=8073