Skip to content

Commit 917ff6e

Browse files
committed
Update files
1 parent def2a63 commit 917ff6e

12 files changed

Lines changed: 19 additions & 19 deletions

File tree

apps/objectos-one/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# `apps/objectos-one`
22

33
**ObjectOS the all-in-one local distribution of ObjectOS. AOne**
4-
[Tauri](https://tauri.app) v2 shell that wraps the `@objectos/app` Node
4+
[Tauri](https://tauri.app) v2 shell that wraps the `@objectos/server` Node
55
runtime as a sidecar and exposes it through a native WebView. The goal
66
ready to use" experience on macOS,
77
Windows and no Node, no database, no extra dependencies toLinux

apps/objectos-one/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@objectos/one",
3-
"version": "0.0.0",
3+
"version": "6.0.0",
44
"private": true,
55
"license": "AGPL-3.0",
66
"description": "ObjectOS One — all-in-one local distribution (Tauri shell + bundled Node runtime + DB).",

apps/objectos-one/scripts/stage-runtime.mjs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
#!/usr/bin/env node
22
/**
3-
* Stage the Node runtime + @objectos/app tree under
3+
* Stage the Node runtime + @objectos/server tree under
44
* `apps/objectos-one/runtime/`, so Tauri's resource bundler can ship it.
55
*
66
* Reuses the same bits scripts/build-one.sh produces, but in-tree
7-
* (no zipping). Idempotent; re-run after changing @objectos/app.
7+
* (no zipping). Idempotent; re-run after changing @objectos/server.
88
*
99
* runtime/
1010
* node | node.exe
@@ -108,7 +108,7 @@ function slim(root) {
108108
}
109109

110110
if (!existsSync(join(APP, 'dist/objectstack.json'))) {
111-
sh('pnpm --filter @objectos/app build', { cwd: REPO });
111+
sh('pnpm --filter @objectos/server build', { cwd: REPO });
112112
}
113113

114114
rmSync(RUNTIME, { recursive: true, force: true });

apps/objectos-one/src-tauri/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "objectos-one"
3-
version = "0.0.0"
3+
version = "6.0.0"
44
description = "ObjectOS One shell"
55
edition = "2021"
66
rust-version = "1.77"

apps/objectos-one/src-tauri/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
//! ObjectOS One — Tauri shell.
22
//!
33
//! Responsibilities:
4-
//! * Resolve the bundled Node runtime + the `@objectos/app` tree (staged
4+
//! * Resolve the bundled Node runtime + the `@objectos/server` tree (staged
55
//! under `<resource_dir>/runtime/`).
66
//! * Spawn the Node sidecar (`one.mjs`), inheriting environment +
77
//! piping logs.

apps/objectos-one/src-tauri/tauri.conf.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"$schema": "https://schema.tauri.app/config/2",
33
"productName": "ObjectOS",
4-
"version": "0.0.0",
4+
"version": "6.0.0",
55
"identifier": "ai.objectstack.objectos",
66
"build": {
77
"frontendDist": "../src",
@@ -45,7 +45,7 @@
4545
],
4646
"category": "DeveloperTool",
4747
"shortDescription": "ObjectOS local runtime",
48-
"longDescription": "Run an ObjectStack environment locally. Bundles a Node runtime, the @objectos/app server and a compiled artifact.",
48+
"longDescription": "Run an ObjectStack environment locally. Bundles a Node runtime, the @objectos/server process and a compiled artifact.",
4949
"macOS": {
5050
"minimumSystemVersion": "11.0",
5151
"entitlements": null,

apps/objectos/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ default browser.
2828
Local dev:
2929

3030
```bash
31-
pnpm --filter @objectos/app one
31+
pnpm --filter @objectos/server one
3232
```
3333

3434
Build a portable bundle (Node runtime + production deps + launcher),

apps/objectos/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
2-
"name": "@objectos/app",
3-
"version": "0.0.0",
2+
"name": "@objectos/server",
3+
"version": "6.0.0",
44
"private": true,
55
"license": "AGPL-3.0",
66
"description": "ObjectOS — the reference runtime distribution of the ObjectStack framework.",

docker/Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,10 @@ COPY pnpm-lock.yaml pnpm-workspace.yaml package.json turbo.json tsconfig.base.js
1919
COPY apps/objectos/package.json apps/objectos/
2020
COPY packages ./packages
2121

22-
RUN pnpm install --frozen-lockfile --filter "@objectos/app..."
22+
RUN pnpm install --frozen-lockfile --filter "@objectos/server..."
2323

2424
COPY apps/objectos ./apps/objectos
25-
RUN pnpm --filter @objectos/app build
25+
RUN pnpm --filter @objectos/server build
2626

2727
# ---------- runtime ----------
2828
FROM node:${NODE_VERSION}-alpine AS runtime
@@ -45,4 +45,4 @@ EXPOSE 3000
4545
HEALTHCHECK --interval=30s --timeout=5s --start-period=20s --retries=3 \
4646
CMD wget -qO- "http://127.0.0.1:${PORT}/" >/dev/null || exit 1
4747
ENTRYPOINT ["/sbin/tini", "--"]
48-
CMD ["pnpm", "--filter", "@objectos/app", "start"]
48+
CMD ["pnpm", "--filter", "@objectos/server", "start"]

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@
1515
"clean": "turbo run clean && rm -rf node_modules",
1616
"docs:dev": "turbo run dev --filter=@objectos/docs",
1717
"docs:build": "turbo run build --filter=@objectos/docs",
18-
"objectos:dev": "turbo run dev --filter=@objectos/app",
19-
"objectos:build": "turbo run build --filter=@objectos/app",
18+
"objectos:dev": "turbo run dev --filter=@objectos/server",
19+
"objectos:build": "turbo run build --filter=@objectos/server",
2020
"one:dev": "pnpm --filter @objectos/one dev",
2121
"one:build": "pnpm --filter @objectos/one build",
2222
"smoke:runtime": "bash scripts/smoke-runtime.sh",

0 commit comments

Comments
 (0)