Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
29 changes: 19 additions & 10 deletions docker-compose/.env
Original file line number Diff line number Diff line change
Expand Up @@ -3,16 +3,19 @@ HOSTNAME=localhost
HTTP_PORT=80
HTTPS_PORT=443
SSL_ENABLED=false
SSL_CERT_FILE= # must be located in ./certs, defaults to "<hostname>.pem"
SSL_KEY_FILE= # must be located in ./certs, defaults to "<hostname>.key"
# must be located in ./certs, defaults to "<hostname>.pem"
SSL_CERT_FILE=
# must be located in ./certs, defaults to "<hostname>.key"
SSL_KEY_FILE=

INITIAL_ROOT_PASSWORD=root
INITIAL_ROOT_MAIL=root@code0.tech
INITIAL_RUNTIME_TOKEN= # can be used to create a global runtime with given token
# can be used to create a global runtime with given token
INITIAL_RUNTIME_TOKEN=runtime

# Runtime config
AQUILA_SAGITTARIUS_URL=http://nginx:80
AQUILA_SAGITTARIUS_TOKEN=
AQUILA_SAGITTARIUS_TOKEN=runtime
DRACO_REST_PORT=8084
DRACO_REST_HOST=127.0.0.1

Expand All @@ -27,21 +30,27 @@ COMPOSE_PROFILES=ide,runtime,ide_velorum
# Image config
IMAGE_REGISTRY=registry.gitlab.com/code0-tech/packages
IMAGE_TAG=
IMAGE_EDITION= # ce or ee
# ce or ee
IMAGE_EDITION=

# Velorum config
# VELORUM_ENABLED=false (override, default checks if COMPOSE_PROFILES contains ide_velorum)
VELORUM_HOST=velorum
VELORUM_PORT=50051
VELORUM_JWT_SECRET=088cfc7a7fc2b07696d8ee5e1ea9d642 # change to a random value
# change to a random value
VELORUM_JWT_SECRET=088cfc7a7fc2b07696d8ee5e1ea9d642

# example, GPT5 in the variable name can be changed to other values. This set of variables can be repeated multiple times
# VELORUM_MODEL_GPT5_IDENTIFIER=gpt-5
# VELORUM_MODEL_GPT5_NAME=GPT 5
# VELORUM_MODEL_GPT5_NAME='GPT 5'
# VELORUM_MODEL_GPT5_CAPABILITIES=explain,generate
# VELORUM_MODEL_GPT5_API= # if using a non-default base-url
# VELORUM_MODEL_GPT5_PROVIDER=openai/gpt-5 # or openrouter/openai/gpt-5, etc depending on the provider
# VELORUM_MODEL_GPT5_AUTH= # authentication token
# if using a non-default base-url
# VELORUM_MODEL_GPT5_API=
# or openrouter/openai/gpt-5, etc depending on the provider
# VELORUM_MODEL_GPT5_PROVIDER=openai/gpt-5
# authentication token
# VELORUM_MODEL_GPT5_AUTH=your-secret-token
# token cost multiplier for this model
# VELORUM_MODEL_GPT5_TOKEN_COST=1

# Internal config options
Expand Down