unoverse 0.1.40 → 0.1.42
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/operator/lib/help.sh +1 -1
- package/operator/lib/init.sh +4 -2
- package/package.json +1 -1
package/operator/lib/help.sh
CHANGED
|
@@ -14,7 +14,7 @@ cmd_help() {
|
|
|
14
14
|
echo -e " ${BOLD}Anywhere${NC}"
|
|
15
15
|
echo -e " ${GREEN}create${NC} Start something new, here"
|
|
16
16
|
echo -e " ${GREEN}studio${NC} Author components, nodes, agent skills"
|
|
17
|
-
echo -e " ${GREEN}where${NC}
|
|
17
|
+
echo -e " ${GREEN}where${NC} Links to your universe ${DIM}(Canvas, API), checked live${NC}"
|
|
18
18
|
echo -e " ${GREEN}update${NC} Update this CLI"
|
|
19
19
|
echo ""
|
|
20
20
|
echo -e " ${BOLD}This universe${NC}"
|
package/operator/lib/init.sh
CHANGED
|
@@ -411,7 +411,9 @@ ENVEOF
|
|
|
411
411
|
# sourced function would take all of init with it — setup then reported failure for a
|
|
412
412
|
# situation that just means "migrations run on start". Which they now do (start.sh).
|
|
413
413
|
if grep -q '^DATABASE_URL=' "$ROOT/.env" 2>/dev/null; then
|
|
414
|
-
|
|
414
|
+
# Quietly: db-setup narrates its own advice ("start services first, then re-run"),
|
|
415
|
+
# which contradicts and duplicates the one line that is true here.
|
|
416
|
+
if (cmd_db_setup) >/dev/null 2>&1; then
|
|
415
417
|
ok "Database schema is up to date"
|
|
416
418
|
else
|
|
417
419
|
info "Migrations wait for the platform: ${BOLD}unoverse start${NC} applies them once services are up"
|
|
@@ -427,7 +429,7 @@ ENVEOF
|
|
|
427
429
|
echo -e " ${DIM}1.${NC} Start Docker Desktop"
|
|
428
430
|
echo -e " ${DIM}2.${NC} ${GREEN}unoverse start${NC}"
|
|
429
431
|
fi
|
|
430
|
-
echo -e " ${GREEN}unoverse where${NC}
|
|
432
|
+
echo -e " ${GREEN}unoverse where${NC} Links to your Canvas and API"
|
|
431
433
|
echo ""
|
|
432
434
|
info "Run ${BOLD}unoverse check${NC} anytime to see if it is healthy"
|
|
433
435
|
info "Change a setting any time: edit ${BOLD}.env${NC} directly, or re-run ${BOLD}unoverse create${NC} (Enter keeps each current value)"
|
package/package.json
CHANGED