-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
21 lines (21 loc) · 1.09 KB
/
package.json
File metadata and controls
21 lines (21 loc) · 1.09 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{
"name": "patina-bot",
"version": "1.0.0",
"private": true,
"description": "Runtime-managed automation for patina",
"scripts": {
"bot": "bash ops/harness.sh",
"marketing:runtime:bootstrap": "bash ops/marketing-runtime-bootstrap.sh",
"marketing:runtime:status": "bash ops/marketing-runtime-cli.sh status",
"marketing:runtime:restart": "bash ops/marketing-runtime-cli.sh gateway restart",
"marketing:runtime:logs": "bash ops/marketing-runtime-cli.sh logs --follow",
"runtime:bootstrap": "bash ops/runtime-bootstrap.sh",
"runtime:component-bridge": "node ops/component-bridge.mjs",
"runtime:component-bridge:once": "COMPONENT_BRIDGE_ONCE=true COMPONENT_BRIDGE_SEED_HISTORY=false node ops/component-bridge.mjs",
"runtime:status": "bash ops/runtime-cli.sh status",
"runtime:restart": "bash ops/runtime-cli.sh gateway restart",
"runtime:logs": "bash ops/runtime-cli.sh logs --follow",
"runtime:component-bridge:logs": "journalctl --user -u patina-component-bridge -f",
"runtime:component-bridge:status": "systemctl --user status patina-component-bridge"
}
}