@intlayer/docs 9.0.0-canary.12 → 9.0.0-canary.14
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/docs/en/releases/v9.md
CHANGED
|
@@ -308,7 +308,7 @@ await dictionaryEndpoint(cms).pushDictionaries([myDictionary]);
|
|
|
308
308
|
|
|
309
309
|
## Self-Hosting
|
|
310
310
|
|
|
311
|
-
Intlayer v9 ships first-class support for running your own Intlayer instance with a single command
|
|
311
|
+
Intlayer v9 ships first-class support for running your own Intlayer instance with a single command. No Intlayer Cloud account required.
|
|
312
312
|
|
|
313
313
|
```sh
|
|
314
314
|
curl -fsSL https://intlayer.org/install.sh | sh
|
package/docs/en/self_hosting.md
CHANGED
|
@@ -18,7 +18,7 @@ author: aymericzip
|
|
|
18
18
|
|
|
19
19
|
# Self-Hosting Intlayer
|
|
20
20
|
|
|
21
|
-
Intlayer can run on your own infrastructure
|
|
21
|
+
Intlayer can run on your own infrastructure. No Intlayer Cloud account required. A single all-in-one Docker image bundles the dashboard, the API, and the local datastores (Redis and MinIO) it needs, supervised by [s6-overlay](https://github.com/just-containers/s6-overlay).
|
|
22
22
|
|
|
23
23
|
The only external dependency is **MongoDB**: the backend connects to a MongoDB **Atlas** cluster, which you provide. Everything else runs inside the container.
|
|
24
24
|
|
|
@@ -45,7 +45,7 @@ The only external dependency is **MongoDB**: the backend connects to a MongoDB *
|
|
|
45
45
|
(console)
|
|
46
46
|
```
|
|
47
47
|
|
|
48
|
-
Chromium (used for Puppeteer screenshot generation) is bundled inside the image
|
|
48
|
+
Chromium (used for Puppeteer screenshot generation) is bundled inside the image. No separate container is needed. Redis and MinIO run inside the container. MongoDB is **not** hosted by the image; the backend connects to your Atlas cluster over `mongodb+srv://`.
|
|
49
49
|
|
|
50
50
|
---
|
|
51
51
|
|
|
@@ -310,7 +310,7 @@ await dictionaryEndpoint(cms).pushDictionaries([myDictionary]);
|
|
|
310
310
|
|
|
311
311
|
## Self-Hosting
|
|
312
312
|
|
|
313
|
-
Intlayer v9 ships first-class support for running your own Intlayer instance with a single command
|
|
313
|
+
Intlayer v9 ships first-class support for running your own Intlayer instance with a single command. No Intlayer Cloud account required.
|
|
314
314
|
|
|
315
315
|
```sh
|
|
316
316
|
curl -fsSL https://intlayer.org/install.sh | sh
|
|
@@ -19,7 +19,7 @@ author: aymericzip
|
|
|
19
19
|
|
|
20
20
|
# Self-Hosting Intlayer
|
|
21
21
|
|
|
22
|
-
Intlayer can run entirely on your own infrastructure
|
|
22
|
+
Intlayer can run entirely on your own infrastructure. No Intlayer Cloud account required. A single command boots a production-ready stack:
|
|
23
23
|
|
|
24
24
|
```sh
|
|
25
25
|
curl -fsSL https://intlayer.org/install.sh | sh
|
|
@@ -50,7 +50,7 @@ The installer downloads a `docker-compose.yml` and a `.env`, auto-generates the
|
|
|
50
50
|
(console) (web UI)
|
|
51
51
|
```
|
|
52
52
|
|
|
53
|
-
Chromium (used for Puppeteer screenshot generation) is bundled inside the backend image
|
|
53
|
+
Chromium (used for Puppeteer screenshot generation) is bundled inside the backend image. No separate container is needed.
|
|
54
54
|
|
|
55
55
|
---
|
|
56
56
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@intlayer/docs",
|
|
3
|
-
"version": "9.0.0-canary.
|
|
3
|
+
"version": "9.0.0-canary.14",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "Intlayer documentation",
|
|
6
6
|
"keywords": [
|
|
@@ -73,13 +73,13 @@
|
|
|
73
73
|
"watch": "webpack --config ./webpack.config.ts --watch"
|
|
74
74
|
},
|
|
75
75
|
"dependencies": {
|
|
76
|
-
"@intlayer/config": "9.0.0-canary.
|
|
77
|
-
"@intlayer/core": "9.0.0-canary.
|
|
78
|
-
"@intlayer/types": "9.0.0-canary.
|
|
76
|
+
"@intlayer/config": "9.0.0-canary.14",
|
|
77
|
+
"@intlayer/core": "9.0.0-canary.14",
|
|
78
|
+
"@intlayer/types": "9.0.0-canary.14"
|
|
79
79
|
},
|
|
80
80
|
"devDependencies": {
|
|
81
|
-
"@intlayer/api": "9.0.0-canary.
|
|
82
|
-
"@intlayer/cli": "9.0.0-canary.
|
|
81
|
+
"@intlayer/api": "9.0.0-canary.14",
|
|
82
|
+
"@intlayer/cli": "9.0.0-canary.14",
|
|
83
83
|
"@types/node": "25.9.4",
|
|
84
84
|
"@utils/ts-config": "1.0.4",
|
|
85
85
|
"@utils/ts-config-types": "1.0.4",
|