-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
37 lines (27 loc) · 1.6 KB
/
.env.example
File metadata and controls
37 lines (27 loc) · 1.6 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
# Docker Hub image tags used by docker-compose.yml
# Copy this file to .env and adjust as needed.
# Without a .env file, docker-compose will build images from source.
# Pre-built images from Docker Hub (pin to a specific version or use latest)
STUDIO_IMAGE=frodehus/sentinel-connector-studio:1.6.0
PACKAGER_IMAGE=frodehus/sentinel-connector-studio-packager:1.6.0
# ---------------------------------------------------------------------------
# Application Insights (optional — omit to disable telemetry)
# ---------------------------------------------------------------------------
# Azure Application Insights connection string for usage/traffic tracking.
# Obtain it from: Azure Portal > Application Insights > Overview > Connection String
# APPINSIGHTS_CONNECTION_STRING=InstrumentationKey=xxx;IngestionEndpoint=https://xxx.applicationinsights.azure.com/
# ---------------------------------------------------------------------------
# Packager tuning (optional — these are the defaults)
# ---------------------------------------------------------------------------
# Maximum size of the uploaded solution ZIP in megabytes
# MAX_ZIP_SIZE_MB=50
# Maximum uncompressed size allowed (decompression bomb guard) in megabytes
# MAX_UNCOMPRESSED_SIZE_MB=200
# Maximum number of files inside the uploaded ZIP
# MAX_ZIP_ENTRIES=500
# How long (seconds) a completed/failed job is kept before automatic cleanup
# JOB_TTL_SECONDS=1800
# Timeout (seconds) for the createSolutionV3.ps1 PowerShell process
# PROCESS_TIMEOUT_SECONDS=120
# Maximum number of jobs allowed in the queue before new submissions are rejected
# MAX_QUEUED_JOBS=20