@datacore-one/cli 1.0.9 → 1.0.10
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 -3
- package/dist/index.js +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -5,13 +5,16 @@ CLI for setting up and managing Datacore installations - an AI-powered second br
|
|
|
5
5
|
## Installation
|
|
6
6
|
|
|
7
7
|
```bash
|
|
8
|
-
|
|
8
|
+
curl -fsSL https://datacore.one/install | bash
|
|
9
9
|
```
|
|
10
10
|
|
|
11
|
-
|
|
11
|
+
This handles everything: installs/upgrades Node.js if needed, installs the CLI, and starts the setup wizard.
|
|
12
|
+
|
|
13
|
+
Or if you already have Node.js 20+:
|
|
12
14
|
|
|
13
15
|
```bash
|
|
14
|
-
|
|
16
|
+
npm install -g @datacore-one/cli
|
|
17
|
+
datacore init
|
|
15
18
|
```
|
|
16
19
|
|
|
17
20
|
## Quick Start
|
package/dist/index.js
CHANGED
|
@@ -11013,7 +11013,7 @@ async function initDatacore(options = {}) {
|
|
|
11013
11013
|
}
|
|
11014
11014
|
|
|
11015
11015
|
// src/index.ts
|
|
11016
|
-
var VERSION = "1.0.
|
|
11016
|
+
var VERSION = "1.0.10";
|
|
11017
11017
|
var args = process.argv.slice(2);
|
|
11018
11018
|
var parsed = parseArgs(args);
|
|
11019
11019
|
async function handleMeta(command, cmdArgs, flags, format) {
|