@@ -127,15 +127,15 @@ sudo mv flashduty-runner /usr/local/bin/
127127``` bash
128128docker run -d \
129129 --name flashduty-runner \
130- -e FLASHDUTY_RUNNER_TOKEN=wnt_xxx \
130+ -e FLASHDUTY_RUNNER_TOKEN=ent_xxx \
131131 -v /var/flashduty/workspace:/workspace \
132132 registry.flashcat.cloud/public/flashduty-runner:latest
133133
134134# With custom endpoint
135135docker run -d \
136136 --name flashduty-runner \
137- -e FLASHDUTY_RUNNER_TOKEN=wnt_xxx \
138- -e FLASHDUTY_RUNNER_URL=wss://custom.example.com/safari/worknode /ws \
137+ -e FLASHDUTY_RUNNER_TOKEN=ent_xxx \
138+ -e FLASHDUTY_RUNNER_URL=wss://custom.example.com/safari/environment /ws \
139139 -v /var/flashduty/workspace:/workspace \
140140 registry.flashcat.cloud/public/flashduty-runner:latest
141141```
@@ -144,13 +144,13 @@ docker run -d \
144144
145145``` bash
146146# Basic usage (token required)
147- flashduty-runner run --token wnt_xxx
147+ flashduty-runner run --token ent_xxx
148148
149149# Specify workspace directory
150- flashduty-runner run --token wnt_xxx --workspace ~ /projects
150+ flashduty-runner run --token ent_xxx --workspace ~ /projects
151151
152152# Specify custom WebSocket endpoint
153- flashduty-runner run --token wnt_xxx --url wss://custom.example.com/safari/worknode /ws
153+ flashduty-runner run --token ent_xxx --url wss://custom.example.com/safari/environment /ws
154154
155155# Check version
156156flashduty-runner version
@@ -180,8 +180,8 @@ WantedBy=multi-user.target
180180Create ` /etc/flashduty-runner/env ` :
181181
182182``` bash
183- FLASHDUTY_RUNNER_TOKEN=wnt_xxx
184- # FLASHDUTY_RUNNER_URL=wss://custom.example.com/safari/worknode /ws
183+ FLASHDUTY_RUNNER_TOKEN=ent_xxx
184+ # FLASHDUTY_RUNNER_URL=wss://custom.example.com/safari/environment /ws
185185# FLASHDUTY_RUNNER_WORKSPACE=/var/flashduty/workspace
186186```
187187
@@ -199,7 +199,7 @@ Configuration is via command-line flags or environment variables (flags take pre
199199| Flag | Env Variable | Required | Default | Description |
200200| ------| -------------| ----------| ---------| -------------|
201201| ` --token ` | ` FLASHDUTY_RUNNER_TOKEN ` | Yes | - | Authentication token |
202- | ` --url ` | ` FLASHDUTY_RUNNER_URL ` | No | ` wss://api.flashcat.cloud/safari/worknode /ws ` | WebSocket endpoint |
202+ | ` --url ` | ` FLASHDUTY_RUNNER_URL ` | No | ` wss://api.flashcat.cloud/safari/environment /ws ` | WebSocket endpoint |
203203| ` --workspace ` | ` FLASHDUTY_RUNNER_WORKSPACE ` | No | ` ~/.flashduty-runner/workspace ` | Workspace root directory |
204204| ` --log-level ` | ` FLASHDUTY_RUNNER_LOG_LEVEL ` | No | ` info ` | Log level: debug, info, warn, error |
205205
@@ -238,7 +238,7 @@ journalctl -u flashduty-runner -f
238238Enable debug logging to see detailed permission decisions:
239239
240240``` bash
241- flashduty-runner run --token wnt_xxx --log-level debug
241+ flashduty-runner run --token ent_xxx --log-level debug
242242
243243# Or via environment variable
244244export FLASHDUTY_RUNNER_LOG_LEVEL=debug
0 commit comments