-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.env.example
More file actions
49 lines (40 loc) · 1.77 KB
/
.env.example
File metadata and controls
49 lines (40 loc) · 1.77 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
38
39
40
41
42
43
44
45
46
47
48
49
# -----------------------------
# GigaEvo Platform Environment (.env.example)
# Copy to .env and fill in values as needed
# -----------------------------
# GitHub Personal Access Token used at image build time
# Optional for public GitHub HTTPS repos; required for private repos
# Required scope for private repository access: repo
# Mounted only as a transient BuildKit secret during clone
GITHUB_PAT=
# Required Compose project name for supported container flows.
# It is used for Compose resource naming and for the shared runner image tag.
COMPOSE_PROJECT_NAME=gigaevo-platform
# Optional Docker network name used by the deploy stack.
GIGAEVO_NETWORK_NAME=gigaevo-platform-network
# Optional: gigaevo-core ref baked into runner image (branch/tag/commit)
GIGAEVO_CORE_REF=main
# Optional: GitHub HTTPS repository root URL baked into runner image
# Example: https://github.com/FusionBrainLab/gigaevo-core
# Do not use /tree/... or /blob/... URLs
GIGAEVO_CORE_REPO_URL=https://github.com/FusionBrainLab/gigaevo-core
# Recommended: set non-default MinIO root credentials to avoid the upstream warning
# and to keep platform storage credentials aligned with the MinIO server.
MINIO_ROOT_USER=gigaevoadmin
MINIO_ROOT_PASSWORD=change-this-minio-password
# Optional: how often (in seconds) to collect results from running experiments
GIGAVOLVE__RESULTS_COLLECTION_INTERVAL=10
# Optional: Number of runner instances to create for parallel experiments execution
RUNNER_POOL_SIZE=1
# Optional: host ports for published container ports.
POSTGRES_HOST_PORT=5432
REDIS_HOST_PORT=6379
REDIS_GIGAVOLVE_HOST_PORT=6380
KAFKA_HOST_PORT=9092
KAFKA_DOCKER_HOST_PORT=29092
KAFKA_UI_HOST_PORT=8080
MINIO_API_HOST_PORT=9000
MINIO_CONSOLE_HOST_PORT=9001
MASTER_API_HOST_PORT=8000
RUNNER_API_HOST_PORT=8001
WEB_UI_HOST_PORT=7860