openmates 0.16.0-alpha.9 → 0.16.0
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 +12 -0
- package/dist/{chunk-QLNFHEEW.js → chunk-2MDZ44M5.js} +2772 -960
- package/dist/{chunk-MLWBMJEN.js → chunk-WBBDQZZI.js} +16 -3
- package/dist/{cli-DJQVrG6j.d.ts → cli-DIJd09_q.d.ts} +50 -0
- package/dist/cli.d.ts +1 -1
- package/dist/cli.js +2 -2
- package/dist/index.d.ts +48 -5
- package/dist/index.js +2 -2
- package/dist/uploadService-AEHE6BBJ.js +12 -0
- package/package.json +3 -2
- package/templates/core/docker-compose.no-webapp.yml +8 -0
- package/templates/core/docker-compose.selfhost.yml +54 -2
- package/dist/uploadService-YTQURQ6W.js +0 -10
package/README.md
CHANGED
|
@@ -195,6 +195,18 @@ openmates server install --path /opt/openmates
|
|
|
195
195
|
openmates server start --path /opt/openmates
|
|
196
196
|
```
|
|
197
197
|
|
|
198
|
+
Contributors and backend-only official servers can adopt an existing checkout
|
|
199
|
+
without cloning or changing its Git state:
|
|
200
|
+
|
|
201
|
+
```bash
|
|
202
|
+
openmates server register --path /path/to/OpenMates
|
|
203
|
+
openmates server register --path /path/to/OpenMates --official-cloud --with-overrides --exclude webapp
|
|
204
|
+
```
|
|
205
|
+
|
|
206
|
+
Registered working-tree servers build the current checkout and persist their
|
|
207
|
+
service selection. Official-cloud registrations omit the bundled web app;
|
|
208
|
+
regular self-host installs continue to include it.
|
|
209
|
+
|
|
198
210
|
Default installs use prebuilt GHCR images and do not require Git, a source
|
|
199
211
|
checkout, or cloud-only deployment flags. The installer writes a runtime
|
|
200
212
|
directory, creates `.env`, generates local secrets, saves the self-host API
|