tovuk 0.1.80 → 0.1.82
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/README.md +3 -3
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
# tovuk
|
|
2
2
|
|
|
3
|
-
Deploy Rust workers, static frontends, and
|
|
3
|
+
Deploy Rust workers, static frontends, and full-stack services to Tovuk.
|
|
4
4
|
|
|
5
5
|
```sh
|
|
6
6
|
npm install -g tovuk
|
|
7
7
|
```
|
|
8
8
|
|
|
9
9
|
```sh
|
|
10
|
-
tovuk new hello-service --template
|
|
10
|
+
tovuk new hello-service --template fullstack-rust-tanstack
|
|
11
11
|
cd hello-service/web && bun install && cd ..
|
|
12
12
|
tovuk check --json
|
|
13
13
|
tovuk deploy --dry-run --json
|
|
@@ -26,7 +26,7 @@ Static frontends must use TypeScript browser source, stable native type-aware
|
|
|
26
26
|
TypeScript checks, native linting such as `oxlint`, `biome check`, or
|
|
27
27
|
`deno lint`, and Fallow dead-code, semantic duplicate-code, and health gates.
|
|
28
28
|
|
|
29
|
-
From a
|
|
29
|
+
From a full-stack repo root, the same deploy command reads one root
|
|
30
30
|
`tovuk.toml`, reads explicit `[capabilities]`, builds the worker and frontend
|
|
31
31
|
roots, and returns one service URL with `/api/*` routed to the Rust worker.
|
|
32
32
|
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "tovuk",
|
|
3
|
-
"version": "0.1.
|
|
4
|
-
"description": "Deploy Rust workers, static frontends, and
|
|
3
|
+
"version": "0.1.82",
|
|
4
|
+
"description": "Deploy Rust workers, static frontends, and full-stack services to Tovuk.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
7
7
|
"tovuk": "bin/tovuk"
|