toolnet-memory 0.3.2 → 0.3.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -115,6 +115,41 @@ case "$COMMAND" in
115
115
  run bundle/api.js src/api/bootstrap.ts
116
116
  ;;
117
117
 
118
+ service)
119
+ shift
120
+ run bundle/service.js src/service/daemon.ts "$@"
121
+ ;;
122
+
123
+ service:install)
124
+ shift
125
+ run bundle/service-cli.js src/service/cli.ts install "$@"
126
+ ;;
127
+
128
+ service:start)
129
+ shift
130
+ run bundle/service-cli.js src/service/cli.ts start "$@"
131
+ ;;
132
+
133
+ service:stop)
134
+ shift
135
+ run bundle/service-cli.js src/service/cli.ts stop "$@"
136
+ ;;
137
+
138
+ service:restart)
139
+ shift
140
+ run bundle/service-cli.js src/service/cli.ts restart "$@"
141
+ ;;
142
+
143
+ service:status)
144
+ shift
145
+ run bundle/service-cli.js src/service/cli.ts status "$@"
146
+ ;;
147
+
148
+ service:remove)
149
+ shift
150
+ run bundle/service-cli.js src/service/cli.ts remove "$@"
151
+ ;;
152
+
118
153
  production:certify)
119
154
  run bundle/production-certify.js src/production/production-certify-cli.ts
120
155
  ;;
@@ -641,6 +676,15 @@ SETUP & INTEGRATION:
641
676
  toolnet-memory mcp
642
677
  toolnet-memory api
643
678
 
679
+ OPTIONAL BACKGROUND SERVICE:
680
+ toolnet-memory service:install Install/start daemon in PM2
681
+ toolnet-memory service:start Start installed daemon
682
+ toolnet-memory service:stop Stop daemon
683
+ toolnet-memory service:restart Restart daemon after ToolNet updates
684
+ toolnet-memory service:status Show daemon/cache status
685
+ toolnet-memory service:remove Remove daemon from PM2
686
+ toolnet-memory service Run daemon in foreground
687
+
644
688
  PRODUCTION:
645
689
  toolnet-memory production:certify Verify packaged production runtime
646
690