forked from scratchfoundation/scratch-gui
-
-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy path.env.example
More file actions
37 lines (28 loc) · 1.16 KB
/
.env.example
File metadata and controls
37 lines (28 loc) · 1.16 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
# Google Drive API Configuration
# See docs/google-drive-setup.md for setup instructions
# Google OAuth 2.0 Client ID (Web Application)
# Example: 123456789012-abcdefghijklmnopqrstuvwxyz123456.apps.googleusercontent.com
GOOGLE_CLIENT_ID=your-client-id-here.apps.googleusercontent.com
# Google API Key (for Picker API)
# Example: AIzaSyAbCdEfGhIjKlMnOpQrStUvWxYz1234567
GOOGLE_API_KEY=your-api-key-here
# Mesh V2 Extension Configuration
# See https://github.com/smalruby/scratch-vm/tree/develop/ for backend setup
# 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