eveland-ctl 0.0.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 +25 -0
- package/bin/eveland-ctl.js +18 -0
- package/package.json +31 -0
package/README.md
ADDED
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
# eveland-ctl (placeholder)
|
|
2
|
+
|
|
3
|
+
This npm package is a **defensive name registration**. It contains no
|
|
4
|
+
functionality.
|
|
5
|
+
|
|
6
|
+
The real `eveland-ctl` operates a local [Eveland](https://eveland.ai)
|
|
7
|
+
installation — it manages the install directory, the process supervisor, and
|
|
8
|
+
(on Linux) systemd units. It is bound to a specific installed source tree, so
|
|
9
|
+
distributing it as a standalone npm package would be meaningless.
|
|
10
|
+
|
|
11
|
+
Install Eveland instead:
|
|
12
|
+
|
|
13
|
+
```sh
|
|
14
|
+
curl -fsSL https://eveland.ai/install.sh | sh
|
|
15
|
+
```
|
|
16
|
+
|
|
17
|
+
The installer places `eveland-ctl` on your `PATH` for you.
|
|
18
|
+
|
|
19
|
+
## Why this package exists
|
|
20
|
+
|
|
21
|
+
Eveland's installation docs tell users to type `eveland-ctl`. Leaving the name
|
|
22
|
+
unclaimed on npm would let someone else publish under a name our own
|
|
23
|
+
documentation teaches. Registering it closes that hole.
|
|
24
|
+
|
|
25
|
+
Source: <https://github.com/evelandhq/eveland/tree/main/infra/npm-placeholders/eveland-ctl>
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
#!/usr/bin/env node
|
|
2
|
+
// Defensive name registration. The real eveland-ctl is bound to a local
|
|
3
|
+
// Eveland installation and ships only with the source tree, so there is
|
|
4
|
+
// nothing meaningful an npm copy of it could do.
|
|
5
|
+
console.error(
|
|
6
|
+
[
|
|
7
|
+
"eveland-ctl is not distributed through npm.",
|
|
8
|
+
"",
|
|
9
|
+
"It operates a local Eveland installation, so it ships with the",
|
|
10
|
+
"installed source tree rather than as a standalone package.",
|
|
11
|
+
"",
|
|
12
|
+
" Install Eveland: curl -fsSL https://eveland.ai/install.sh | sh",
|
|
13
|
+
" Docs: https://eveland.ai/docs",
|
|
14
|
+
"",
|
|
15
|
+
"This npm package exists only to hold the name.",
|
|
16
|
+
].join("\n"),
|
|
17
|
+
);
|
|
18
|
+
process.exit(1);
|
package/package.json
ADDED
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "eveland-ctl",
|
|
3
|
+
"version": "0.0.1",
|
|
4
|
+
"description": "Placeholder. eveland-ctl is not distributed through npm — install Eveland with the official install script.",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"eveland",
|
|
7
|
+
"placeholder"
|
|
8
|
+
],
|
|
9
|
+
"homepage": "https://eveland.ai",
|
|
10
|
+
"bugs": "https://github.com/evelandhq/eveland/issues",
|
|
11
|
+
"license": "AGPL-3.0-only",
|
|
12
|
+
"repository": {
|
|
13
|
+
"type": "git",
|
|
14
|
+
"url": "git+https://github.com/evelandhq/eveland.git",
|
|
15
|
+
"directory": "infra/npm-placeholders/eveland-ctl"
|
|
16
|
+
},
|
|
17
|
+
"bin": {
|
|
18
|
+
"eveland-ctl": "./bin/eveland-ctl.js"
|
|
19
|
+
},
|
|
20
|
+
"files": [
|
|
21
|
+
"bin",
|
|
22
|
+
"README.md"
|
|
23
|
+
],
|
|
24
|
+
"type": "module",
|
|
25
|
+
"publishConfig": {
|
|
26
|
+
"access": "public"
|
|
27
|
+
},
|
|
28
|
+
"engines": {
|
|
29
|
+
"node": ">=18"
|
|
30
|
+
}
|
|
31
|
+
}
|