@tridha643/hestia 1.2.0 → 1.3.1
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 -2
- package/dist/assets/portless/dist/cli.js +4 -3
- package/dist/assets/portless/hestia-hardening.patch +7 -6
- package/dist/assets/portless/provenance.json +1 -1
- package/dist/cli.js +935 -378
- package/dist/cli.js.map +32 -28
- package/dist/daemon.js +624 -225
- package/dist/daemon.js.map +21 -19
- package/package.json +1 -1
- package/skills/hestia/SKILL.md +12 -1
package/package.json
CHANGED
package/skills/hestia/SKILL.md
CHANGED
|
@@ -46,6 +46,16 @@ at `~/.hestia/repositories/<repoId>.toml`, optional committed `hestia.toml`,
|
|
|
46
46
|
then automatic discovery. Conflicts fail rather than silently overriding a
|
|
47
47
|
workload source. `.hestia/` must remain ignored.
|
|
48
48
|
|
|
49
|
+
Configured proc and Wrangler workloads may declare environment values. Literal
|
|
50
|
+
`${endpoint:<alias>.host}`, `${endpoint:<alias>.port}`, and
|
|
51
|
+
`${endpoint:<alias>.url}` references resolve only after the producing workload
|
|
52
|
+
is ready, while `{port}` resolves to the receiving process's own assigned
|
|
53
|
+
port. A value shaped as `{ file = ".hestia/..." }` reads ignored local
|
|
54
|
+
material into memory; Hestia refuses file inputs outside `.hestia/` and never
|
|
55
|
+
persists their contents. Use `cwd` to select a package-local `.env.schema`,
|
|
56
|
+
`varlock = true` to compose that package's resolver, and `health_path` when
|
|
57
|
+
port ownership alone doesn't prove that the application compiled successfully.
|
|
58
|
+
|
|
49
59
|
## Run and consume structured endpoints
|
|
50
60
|
|
|
51
61
|
```bash
|
|
@@ -240,7 +250,8 @@ JSON/NDJSON commands.
|
|
|
240
250
|
Run `down` before switching or deleting the branch. After deletion, use the
|
|
241
251
|
recorded project with `hestia down --project <project>`. Docker workloads
|
|
242
252
|
cannot be stopped individually (`backend-not-stoppable`); proc/Wrangler
|
|
243
|
-
workloads can. Named volumes are retained unless
|
|
253
|
+
workloads can. Named volumes and project-built images are retained unless
|
|
254
|
+
`--destroy` is explicit (it adds `-v --rmi local`; shared base images stay).
|
|
244
255
|
|
|
245
256
|
## Stable error remedies
|
|
246
257
|
|