feat: Phase 1 — extract the client (web SPA + desktop) to dtoro/oikos-web
Some checks failed
ci / build-test (push) Has been cancelled
ci / docker-build (push) Has been cancelled

Problem: the hexagonal refactor churns the backend tree for nine more
phases; the UI delivery stack (web/ SPA, cmd/desktop Wails wrapper,
compose/web image) must move to its own repo first so doc/layout
rewrites land once on a backend-only tree.

Change:
- New repo git.hubris.network/dtoro/oikos-web (v0.33.0): web/, desktop/
  (updateURL repointed to oikos-web releases), compose/, own CI (web +
  desktop jobs), own deploy script (CI-green gate, TOCTOU guard,
  version-tagged images, prune-to-3), own webhook receiver on :9798 +
  launchd unit, own compose project publishing the same 8091:80.
- Cutover executed on mac-mini in order: oikos stack's web service
  stopped+removed, oikos-web project brought up on 8091; outer Caddy
  untouched (targets the published port) — serving + Authentik flow +
  /wails 404 quirk verified post-cutover.
- Stripped from oikos: web/, cmd/desktop/, compose/web/, desktop CI
  workflow, ci.yml web job, Makefile ui/desktop/desktop-package/install
  targets, the compose web service, oikos-web from deploy.sh's fallback
  prune list; wails + go-keyring dropped from go.mod, vendor synced.
- README / CONTRIBUTING / AGENTS.md / .agents dev+operations docs now
  point at the new repo; mbse + mascot design docs carry a path note.

Risk: production SPA serving depends on the new pipeline now; rollback
is versioned-image re-up of the old web service from a pre-split
checkout (port 8091). Desktop builds installed before the split still
check dtoro/oikos releases — one manual reinstall, noted in the
oikos-web release notes.

Verification: go vet, make test (race), make generate-check, golangci
(no new findings; baseline down 400→365); post-cutover curls —
localhost:8091 200, /wails/runtime.js 404, outer Caddy 302 Authentik.
This commit is contained in:
2026-08-15 22:27:52 +02:00
parent e074f04bdf
commit d4d99a7473
18854 changed files with 2615729 additions and 173735 deletions

61
web/node_modules/is-reference/README.md generated vendored Normal file
View File

@@ -0,0 +1,61 @@
# is-reference
Utility for determining whether an AST node is a reference.
`foo` is a reference in these cases:
```js
console.log(foo);
var foo;
function foo() {}
function bar(foo) {}
export { foo as x };
```
`foo` is *not* a reference in these cases:
```js
var obj = { foo: 1 };
console.log(obj.foo);
export { x as foo };
```
In all cases, `foo` is an `Identifier` node, but the two kinds must be treated differently for the purposes of scope analysis etc. (The examples are non-exhaustive.)
## Installation
```bash
npm install is-reference
```
## Usage
Example using [Acorn](https://github.com/ternjs/acorn) and [estree-walker](https://github.com/Rich-Harris/estree-walker):
```js
import { parse } from 'acorn';
import { walk } from 'estree-walker';
import is_reference from 'is-reference';
const identifiers = [];
const references = [];
const ast = parse(`var a = b.c;`);
walk(ast, {
enter(node, parent) {
if (node.type === 'Identifier') identifiers.push(node);
if (is_reference(node, parent)) references.push(node);
}
});
identifiers.forEach(node => console.log(node.name)); // a, b, c
references.forEach(node => console.log(node.name)); // a, b
```
## License
MIT

48
web/node_modules/is-reference/package.json generated vendored Normal file
View File

@@ -0,0 +1,48 @@
{
"name": "is-reference",
"version": "3.0.3",
"description": "Determine whether an AST node is a reference",
"type": "module",
"module": "src/index.js",
"types": "types/index.d.ts",
"exports": {
"types": "./types/index.d.ts",
"import": "./src/index.js"
},
"files": [
"src",
"types"
],
"scripts": {
"test": "uvu",
"prepublishOnly": "npm test && dts-buddy"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Rich-Harris/is-reference.git"
},
"keywords": [
"ast",
"javascript",
"estree",
"acorn"
],
"author": "Rich Harris",
"license": "MIT",
"bugs": {
"url": "https://github.com/Rich-Harris/is-reference/issues"
},
"homepage": "https://github.com/Rich-Harris/is-reference#readme",
"dependencies": {
"@types/estree": "^1.0.6"
},
"devDependencies": {
"acorn": "^8.0.5",
"acorn-class-fields": "^1.0.0",
"acorn-static-class-features": "^1.0.0",
"dts-buddy": "^0.5.3",
"estree-walker": "^3.0.0",
"typescript": "^5.6.3",
"uvu": "^0.5.6"
}
}

51
web/node_modules/is-reference/src/index.js generated vendored Normal file
View File

@@ -0,0 +1,51 @@
/** @import { Node } from 'estree' */
/**
* @param {Node} node
* @param {Node} parent
* @returns {boolean}
*/
export default function is_reference(node, parent) {
if (node.type === 'MemberExpression') {
return !node.computed && is_reference(node.object, node);
}
if (node.type !== 'Identifier') return false;
switch (parent?.type) {
// disregard `bar` in `foo.bar`
case 'MemberExpression':
return parent.computed || node === parent.object;
// disregard the `foo` in `class {foo(){}}` but keep it in `class {[foo](){}}`
case 'MethodDefinition':
return parent.computed;
// disregard the `meta` in `import.meta`
case 'MetaProperty':
return parent.meta === node;
// disregard the `foo` in `class {foo=bar}` but keep it in `class {[foo]=bar}` and `class {bar=foo}`
case 'PropertyDefinition':
return parent.computed || node === parent.value;
// disregard the `bar` in `{ bar: foo }`, but keep it in `{ [bar]: foo }`
case 'Property':
return parent.computed || node === parent.value;
// disregard the `bar` in `export { foo as bar }` or
// the foo in `import { foo as bar }`
case 'ExportSpecifier':
case 'ImportSpecifier':
return node === parent.local;
// disregard the `foo` in `foo: while (...) { ... break foo; ... continue foo;}`
case 'LabeledStatement':
case 'BreakStatement':
case 'ContinueStatement':
return false;
default:
return true;
}
}

8
web/node_modules/is-reference/types/index.d.ts generated vendored Normal file
View File

@@ -0,0 +1,8 @@
declare module 'is-reference' {
import type { Node } from 'estree';
export default function is_reference(node: Node, parent: Node): boolean;
export {};
}
//# sourceMappingURL=index.d.ts.map

9
web/node_modules/is-reference/types/index.d.ts.map generated vendored Normal file
View File

@@ -0,0 +1,9 @@
{
"version": 3,
"file": "index.d.ts",
"names": [],
"sources": [],
"sourcesContent": [],
"mappings": "",
"ignoreList": []
}