chore: update ontology
This commit is contained in:
parent
97ef96f3d8
commit
7bda3a6123
@ -132,6 +132,8 @@ let d = import "../ontology/defaults/core.ncl" in
|
|||||||
description = "Migration system for onboarding existing projects into the ontoref protocol. Provides .ontology/ stub templates, .ontoref/config.ncl template, scripts/ontoref thin wrapper, and the adopt_ontoref mode+form+script that wire everything up idempotently.",
|
description = "Migration system for onboarding existing projects into the ontoref protocol. Provides .ontology/ stub templates, .ontoref/config.ncl template, scripts/ontoref thin wrapper, and the adopt_ontoref mode+form+script that wire everything up idempotently.",
|
||||||
artifact_paths = [
|
artifact_paths = [
|
||||||
"ontoref",
|
"ontoref",
|
||||||
|
"justfile",
|
||||||
|
"justfiles/ci.just",
|
||||||
"templates/ontology/",
|
"templates/ontology/",
|
||||||
"templates/ontoref-config.ncl",
|
"templates/ontoref-config.ncl",
|
||||||
"templates/scripts-ontoref",
|
"templates/scripts-ontoref",
|
||||||
@ -163,6 +165,7 @@ let d = import "../ontology/defaults/core.ncl" in
|
|||||||
"crates/ontoref-daemon/src/ui/qa_ncl.rs",
|
"crates/ontoref-daemon/src/ui/qa_ncl.rs",
|
||||||
"crates/ontoref-daemon/src/ui/drift_watcher.rs",
|
"crates/ontoref-daemon/src/ui/drift_watcher.rs",
|
||||||
"crates/ontoref-daemon/src/mcp/mod.rs",
|
"crates/ontoref-daemon/src/mcp/mod.rs",
|
||||||
|
"justfiles/ci.just",
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
|
|
||||||
|
|||||||
@ -184,6 +184,23 @@ hooks-run-all:
|
|||||||
@echo "🪝 Running pre-commit on all files..."
|
@echo "🪝 Running pre-commit on all files..."
|
||||||
pre-commit run --all-files
|
pre-commit run --all-files
|
||||||
|
|
||||||
|
# ==============================================================================
|
||||||
|
# Install
|
||||||
|
# ==============================================================================
|
||||||
|
|
||||||
|
# Build ontoref-daemon with default features (db,nats,ui,mcp) and install to ~/.local/bin
|
||||||
|
install-daemon:
|
||||||
|
#!/usr/bin/env bash
|
||||||
|
set -euo pipefail
|
||||||
|
echo "Building ontoref-daemon (features: db nats ui mcp)..."
|
||||||
|
cargo build --release -p ontoref-daemon
|
||||||
|
dest="${HOME}/.local/bin/ontoref-daemon"
|
||||||
|
mkdir -p "${HOME}/.local/bin"
|
||||||
|
cp target/release/ontoref-daemon "${dest}"
|
||||||
|
chmod +x "${dest}"
|
||||||
|
echo "Installed: ${dest}"
|
||||||
|
"${dest}" --version 2>/dev/null || true
|
||||||
|
|
||||||
# ==============================================================================
|
# ==============================================================================
|
||||||
# Utility Commands
|
# Utility Commands
|
||||||
# ==============================================================================
|
# ==============================================================================
|
||||||
|
|||||||
@ -1 +0,0 @@
|
|||||||
/Users/Akasha/Tools/dev-system/languages/rust/just-modules/axum
|
|
||||||
@ -1 +0,0 @@
|
|||||||
/Users/Akasha/Tools/dev-system/languages/rust/just-modules/cargo
|
|
||||||
@ -1 +0,0 @@
|
|||||||
/Users/Akasha/Tools/dev-system/languages/rust/just-modules/leptos
|
|
||||||
Loading…
x
Reference in New Issue
Block a user