@saishnarvekar/plugin-elastic-devtool-backend 0.1.0 → 0.1.2
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 +6 -5
- package/package.json +10 -1
package/README.md
CHANGED
|
@@ -49,10 +49,11 @@ backend.add(elasticDevToolPlugin());
|
|
|
49
49
|
Configure your Elasticsearch connection in `app-config.yaml`:
|
|
50
50
|
|
|
51
51
|
```yaml
|
|
52
|
-
elastic:
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
52
|
+
elastic-devtool:
|
|
53
|
+
elasticsearch:
|
|
54
|
+
node: 'https://localhost:9200'
|
|
55
|
+
username: 'elastic' # optional
|
|
56
|
+
password: 'password' # optional
|
|
56
57
|
```
|
|
57
58
|
|
|
58
59
|
---
|
|
@@ -78,4 +79,4 @@ This will launch a local backend server for rapid development and testing.
|
|
|
78
79
|
---
|
|
79
80
|
|
|
80
81
|
> [!IMPORTANT]
|
|
81
|
-
> Use together with [`@saishnarvekar/plugin-elastic-devtool`](
|
|
82
|
+
> Use together with [`@saishnarvekar/plugin-elastic-devtool`](https://www.npmjs.com/package/@saishnarvekar/plugin-elastic-devtool) for a complete frontend + backend solution.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@saishnarvekar/plugin-elastic-devtool-backend",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.2",
|
|
4
4
|
"license": "Apache-2.0",
|
|
5
5
|
"main": "dist/index.cjs.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -51,6 +51,15 @@
|
|
|
51
51
|
"files": [
|
|
52
52
|
"dist"
|
|
53
53
|
],
|
|
54
|
+
"repository": {
|
|
55
|
+
"type": "git",
|
|
56
|
+
"url": "git+https://github.com/SaishNarvekar/elastic-devtool.git"
|
|
57
|
+
},
|
|
58
|
+
"keywords": [
|
|
59
|
+
"backstage",
|
|
60
|
+
"backstage-plugin",
|
|
61
|
+
"elasticsearch"
|
|
62
|
+
],
|
|
54
63
|
"typesVersions": {
|
|
55
64
|
"*": {
|
|
56
65
|
"package.json": [
|