krexel 0.1.0 → 0.1.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 +14 -26
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,42 +1,30 @@
|
|
|
1
1
|
# Krexel CLI
|
|
2
2
|
|
|
3
|
-
The `krexel` command
|
|
3
|
+
Ship websites from your terminal. The `krexel` command talks to the Krexel MCP server over stdio — call `krexel ship ./my-site mydomain.com` and your static/Next/Astro/Vite build is on a custom domain in under a minute.
|
|
4
4
|
|
|
5
|
-
##
|
|
6
|
-
|
|
7
|
-
From the monorepo root:
|
|
8
|
-
|
|
9
|
-
```bash
|
|
10
|
-
npm install
|
|
11
|
-
npm run build --workspace krexel
|
|
12
|
-
npm link --workspace krexel
|
|
13
|
-
```
|
|
14
|
-
|
|
15
|
-
From npm (once published):
|
|
5
|
+
## Quickstart
|
|
16
6
|
|
|
17
7
|
```bash
|
|
18
|
-
|
|
19
|
-
|
|
8
|
+
# Try it without installing
|
|
9
|
+
npx krexel --help
|
|
20
10
|
|
|
21
|
-
|
|
11
|
+
# Or install globally
|
|
12
|
+
npm i -g krexel krexel-mcp
|
|
22
13
|
|
|
23
|
-
|
|
24
|
-
# 1. Log in once (opens your browser, OAuths into Cloudflare)
|
|
14
|
+
# Log in (opens browser, OAuths into Cloudflare)
|
|
25
15
|
krexel login
|
|
26
16
|
|
|
27
|
-
#
|
|
28
|
-
krexel ship ./
|
|
29
|
-
|
|
30
|
-
# 3. Watch what happened
|
|
31
|
-
krexel logs dep_xxxxxxxx_xxxx
|
|
17
|
+
# Ship a folder
|
|
18
|
+
krexel ship ./dist mydomain.com
|
|
32
19
|
|
|
33
|
-
#
|
|
34
|
-
krexel rollback mydomain.com dep_yyyyyyyy_yyyy
|
|
35
|
-
|
|
36
|
-
# 5. Confirm who you're signed in as
|
|
20
|
+
# Inspect + rollback
|
|
37
21
|
krexel whoami
|
|
22
|
+
krexel logs <deploy_id>
|
|
23
|
+
krexel rollback mydomain.com <deploy_id>
|
|
38
24
|
```
|
|
39
25
|
|
|
26
|
+
You need a Krexel account first — sign up at <https://krexel.com>. New accounts get a free API key + a Pages project on the Krexel platform account.
|
|
27
|
+
|
|
40
28
|
## Subcommands
|
|
41
29
|
|
|
42
30
|
| Command | What it does |
|