Skip to content

Commit 28bbfa3

Browse files
committed
wip
1 parent 22a2e95 commit 28bbfa3

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,4 +41,4 @@ HEALTHCHECK --interval=30s --timeout=10s --start-period=40s --retries=3 \
4141
CMD node -e "require('http').get('http://localhost:${PORT}/health', (r) => { process.exit(r.statusCode === 200 ? 0 : 1); }).on('error', () => process.exit(1));"
4242

4343
ENTRYPOINT ["node", "dist/index.js"]
44-
CMD ["--config=/app/configs/simulation.json", "--simulation-name=summer_vacation"]
44+
CMD ["--config", "/app/configs", "--simulation-name", "gift_choice"]

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22

33
> Multi-agent AI simulation runtime engine powered by TypeScript, BullMQ, and OpenAI
44
5-
[![Tests](https://github.com/margostino/autobox-engine-ts/actions/workflows/tests.yml/badge.svg?branch=main)](https://github.com/margostino/autobox-engine-ts/actions/workflows/tests.yml)
6-
[![codecov](https://codecov.io/gh/margostino/autobox/branch/main/graph/badge.svg?flag=autobox-engine-ts)](https://codecov.io/gh/margostino/autobox)
5+
[![Tests](https://github.com/Autobox-AI/autobox-engine/actions/workflows/tests.yml/badge.svg?branch=main)](https://github.com/Autobox-AI/autobox-engine/actions/workflows/tests.yml)
6+
[![codecov](https://codecov.io/gh/Autobox-AI/autobox-engine/branch/main/graph/badge.svg)](https://codecov.io/gh/Autobox-AI/autobox-engine)
77
[![TypeScript](https://img.shields.io/badge/TypeScript-5.9-blue.svg)](https://www.typescriptlang.org/)
88
[![Node.js](https://img.shields.io/badge/Node.js-18+-green.svg)](https://nodejs.org/)
99
[![License](https://img.shields.io/badge/license-ISC-lightgrey.svg)](LICENSE)
@@ -221,7 +221,6 @@ yarn docker:clean:all # Remove all images including dev
221221

222222
For detailed Docker usage, configuration, and troubleshooting, see [DOCKER.md](DOCKER.md).
223223

224-
225224
## API Endpoints
226225

227226
### Health & Information
@@ -444,6 +443,7 @@ docker run -d --name redis -p 6379:6379 redis:alpine
444443
```
445444

446445
For complete Docker documentation including:
446+
447447
- Detailed script options
448448
- Volume mounting configuration
449449
- Multi-platform builds

src/runner.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ program
1212
.version('0.0.1')
1313
.option('-c, --config <config>', 'simulation config file', '/autobox/config')
1414
.option('-d, --daemon', 'keep server alive after simulation completes', false)
15-
.option('-s, --simulation-name <simulationName>', 'simulation name', 'summer_vacation')
15+
.option('-s, --simulation-name <simulationName>', 'simulation name', 'gift_choice')
1616
.parse(process.argv);
1717

1818
export const getConfig = (): { config: Config; isDaemon: boolean } => {

0 commit comments

Comments
 (0)