Skip to content

Commit aa013cb

Browse files
authored
Merge pull request #155 from code0-tech/feat/next-canary-docs-update
Docs changes for next canary
2 parents 91f5000 + d2f730a commit aa013cb

2 files changed

Lines changed: 21 additions & 3 deletions

File tree

content/general/changelog.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1010

1111
## [Unreleased]
1212

13+
## [[0.0.0-canary-2479774825-5f30e1cf348478a20d0d708f31e863f5e521b368]](https://github.com/code0-tech/codezero/releases/tag/0.0.0-canary-2479774825-5f30e1cf348478a20d0d708f31e863f5e521b368) - 2026-04-25
14+
1315
### Added
1416

1517
- Foundational validation and suggestion support for flows, nodes, and validation rules: [#3](https://github.com/code0-tech/triangulum/issues/3), [#22](https://github.com/code0-tech/triangulum/issues/22), [#32](https://github.com/code0-tech/triangulum/issues/32)

content/general/install.mdx

Lines changed: 19 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -65,18 +65,23 @@ SSL_KEY_FILE= # must be located in ./certs, defaults to "<hostname>.key"
6565

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

6970
# Runtime config
7071
AQUILA_SAGITTARIUS_URL=http://nginx:80
7172
AQUILA_SAGITTARIUS_TOKEN=
7273
DRACO_REST_PORT=8084
7374

75+
TAURUS_AQUILA_TOKEN=taurus
76+
DRACO_REST_AQUILA_TOKEN=draco-rest
77+
DRACO_CRON_AQUILA_TOKEN=draco-cron
78+
7479
# Active services
7580
COMPOSE_PROFILES=ide,runtime
7681

7782
# Image config
7883
IMAGE_REGISTRY=registry.gitlab.com/code0-tech/packages
79-
IMAGE_TAG= # version
84+
IMAGE_TAG=
8085
IMAGE_EDITION= # ce or ee
8186

8287
# Internal config options
@@ -96,15 +101,21 @@ POSTGRES_PASSWORD=sagittarius
96101

97102
### Key parameters
98103

104+
- `IMAGE_TAG`: Set this to the specific version of CodeZero you want to deploy.
99105
- `INITIAL_ROOT_MAIL`: The email address for the primary administrator.
100106
- `INITIAL_ROOT_PASSWORD`: The secure password for your first login.
101107
- `IMAGE_EDITION`: Set this to ce for the Community Edition or ee for the Enterprise Edition. This
102108
determines which Docker images will be pulled.
103109

110+
### Setup initial runtime
111+
112+
- `INITIAL_RUNTIME_TOKEN`: If you want to create a global runtime with a predefined token, set it here. This allows you to connect a runtime immediately after deployment without needing to generate a token from the dashboard.
113+
- `AQUILA_SAGITTARIUS_TOKEN`: Set the same token here if you want the global runtime to connect right away. If you leave it blank, you can set it up runtime later, follow [Setup additional runtimes](#setup-additional-runtimes) instructions.
114+
104115
</Step>
105116
<Step>
106117

107-
## Initial deployment
118+
## Deployment
108119

109120
Start the CodeZero containers in detached mode:
110121

@@ -116,6 +127,11 @@ Once the containers are running, you can access the CodeZero Dashboard via your
116127
at [http://localhost/](http://localhost/)).
117128

118129
</Step>
130+
</Steps>
131+
132+
## Setup additional runtimes
133+
134+
<Steps>
119135
<Step>
120136

121137
## Connecting the runtime
@@ -158,7 +174,7 @@ Update your .env file with the copied token at `AQUILA_SAGITTARIUS_TOKEN` and sa
158174
For the changes to take effect and for the runtime to authenticate correctly, restart the containers:
159175

160176
```bash
161-
docker compose restart
177+
docker compose up -d
162178
```
163179

164180
</Step>

0 commit comments

Comments
 (0)