Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 13 additions & 3 deletions apps/objectos/objectstack.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,19 @@
* OS_BUSINESS_DB_URL — Per-project business database (legacy: OS_DATABASE_URL;
* default: file-backed sqlite under the ObjectStack home)
*
* Artifact hot-reload follows `NODE_ENV` (on outside production). Enterprise
* plugins live in ../../packages/* and can be appended to the returned
* plugin manifest below.
* Artifact hot-reload follows `NODE_ENV` (on outside production).
*
* NOTE — marketplace + Console SPA are intentionally NOT wired here. The
* `objectstack` CLI (dev / serve / start, which every entry point — Docker and
* the ObjectOS One desktop via one.mjs — routes through) auto-provisions them
* on top of this standalone stack: it injects marketplace browse/install +
* cloud-connection + runtime-config from `@objectstack/cloud-connection`
* (gated on `resolveCloudUrl()`; `OS_CLOUD_URL=off` → fully offline, nothing
* mounts) and serves the `@objectstack/console` SPA at `/_console/`. Both
* packages are declared as dependencies so this distribution pins their
* versions. Re-adding them to `plugins` below would double-mount; only wire
* them explicitly here if a future framework drops the CLI auto-injection
* (ADR-0006 Phase 4).
*/

import { createStandaloneStack } from '@objectstack/runtime';
Expand Down
2 changes: 2 additions & 0 deletions apps/objectos/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,8 @@
},
"dependencies": {
"@objectstack/cli": "^10.2.0",
"@objectstack/cloud-connection": "^10.2.0",
"@objectstack/console": "^10.2.0",
"@objectstack/core": "^10.2.0",
"@objectstack/driver-memory": "^10.2.0",
"@objectstack/driver-sql": "^10.2.0",
Expand Down
6 changes: 6 additions & 0 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading