@umbral/cli 0.0.1 → 0.0.2
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.
- package/dist/index.js +2 -2
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -1058,7 +1058,7 @@ import { homedir as homedir3 } from "os";
|
|
|
1058
1058
|
import { createServer } from "net";
|
|
1059
1059
|
var UMBRAL_DIR = join10(homedir3(), ".umbral");
|
|
1060
1060
|
var COMPOSE_PATH = join10(UMBRAL_DIR, "docker-compose.yml");
|
|
1061
|
-
var DOCKER_IMAGE = process.env.UMBRAL_IMAGE ?? "umbral
|
|
1061
|
+
var DOCKER_IMAGE = process.env.UMBRAL_IMAGE ?? "ghcr.io/josephrobles23/umbral-web:latest";
|
|
1062
1062
|
function dockerInstalled() {
|
|
1063
1063
|
try {
|
|
1064
1064
|
execSync("docker --version", { stdio: "ignore" });
|
|
@@ -1214,7 +1214,7 @@ function stopCommand() {
|
|
|
1214
1214
|
|
|
1215
1215
|
// src/index.ts
|
|
1216
1216
|
var program = new Command();
|
|
1217
|
-
program.name("umbral").description("Umbral \u2014 Framework de gobernanza para proyectos con Claude Code").version("0.0.
|
|
1217
|
+
program.name("umbral").description("Umbral \u2014 Framework de gobernanza para proyectos con Claude Code").version("0.0.2");
|
|
1218
1218
|
program.command("init").description("Inicializar Umbral en el proyecto actual").option("--yes", "Aceptar todas las propuestas sin preguntar").option("--path <path>", "Ruta al proyecto (default: directorio actual)").action(initCommand);
|
|
1219
1219
|
program.command("start").description("Levantar la plataforma Umbral (Neo4j + Dashboard web)").option("--port <port>", "Puerto para el dashboard (default: auto)").option("--no-detach", "Correr en primer plano (sin -d)").action(startCommand);
|
|
1220
1220
|
program.command("stop").description("Detener la plataforma Umbral").action(stopCommand);
|