- Simplified RunnerConfig to just name, command, and optional env - Removed RunnerType and ProcessManagerType enums - Removed db_path, redis_url, binary_path from config - Made runner name also serve as queue name (no separate queue param) - Added secret-based authentication to all runner management methods - Created comprehensive osiris_openrpc example - Archived old examples to _archive/ - Updated client API to match simplified supervisor interface
19 lines
541 B
Plaintext
19 lines
541 B
Plaintext
print("Creating context for [alice, bob]...");
|
|
let ctx = get_context(["alice", "bob"]);
|
|
print("✓ Context ID: " + ctx.context_id());
|
|
|
|
print("\nCreating event...");
|
|
let event = event("events")
|
|
.title("Team Retrospective")
|
|
.description("Review what went well and areas for improvement")
|
|
.location("Virtual - Zoom Room A")
|
|
.category("retrospective");
|
|
|
|
print("✓ Event created");
|
|
|
|
print("\nStoring event in context...");
|
|
ctx.save(event);
|
|
print("✓ Event stored");
|
|
|
|
"Event 'Team Retrospective' created and stored successfully"
|