unoverse 0.1.158 → 0.1.159
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/operator/lib/help.sh +8 -6
- package/package.json +1 -1
package/operator/lib/help.sh
CHANGED
|
@@ -4,8 +4,8 @@
|
|
|
4
4
|
# Printed by the npm CLI when you are standing in a universe folder. It lists what you
|
|
5
5
|
# can do to a universe, and nothing else. Commands that still exist but are not for
|
|
6
6
|
# day-to-day operating (ground, dev, build) are deliberately absent: a list you can read
|
|
7
|
-
# in one glance is worth more than a complete one. `
|
|
8
|
-
#
|
|
7
|
+
# in one glance is worth more than a complete one. `deploy` is listed under Anywhere:
|
|
8
|
+
# the target says what ships (studio = this workspace's items; aws/digitalocean = the
|
|
9
9
|
# platform monorepo root releases the platform — LOCAL_STUDIO.md §Publish is terminal-only).
|
|
10
10
|
|
|
11
11
|
cmd_help() {
|
|
@@ -16,8 +16,11 @@ cmd_help() {
|
|
|
16
16
|
echo -e " ${BOLD}Anywhere${NC}"
|
|
17
17
|
echo -e " ${GREEN}create${NC} Start something new, here"
|
|
18
18
|
echo -e " ${GREEN}studio${NC} Author components, nodes, agent skills"
|
|
19
|
-
echo -e " ${GREEN}
|
|
20
|
-
echo -e "
|
|
19
|
+
echo -e " ${GREEN}deploy${NC} Ship it"
|
|
20
|
+
echo -e " ${DIM}deploy studio your components, nodes and skills → your universe${NC}"
|
|
21
|
+
echo -e " ${DIM}deploy aws your universe → AWS${NC}"
|
|
22
|
+
echo -e " ${DIM}deploy digitalocean your universe → DigitalOcean${NC}"
|
|
23
|
+
echo -e " ${GREEN}login${NC} Sign in to a universe ${DIM}(deploy asks by itself; this is for up front)${NC}"
|
|
21
24
|
echo -e " ${GREEN}where${NC} Links to your universe ${DIM}(Canvas, API), checked live${NC}"
|
|
22
25
|
echo -e " ${GREEN}update${NC} Update this CLI"
|
|
23
26
|
echo ""
|
|
@@ -32,8 +35,7 @@ cmd_help() {
|
|
|
32
35
|
# SHOW THE COMMAND, not a description of it. "aws or digitalocean" told a reader the
|
|
33
36
|
# clouds exist without telling them what to type, so the shape of the command still had
|
|
34
37
|
# to be guessed. Print the line they will actually run.
|
|
35
|
-
echo -e " ${GREEN}deploy${NC} Ship it to a server ${DIM}(first run asks which cloud)${NC}"
|
|
36
|
-
echo -e " ${DIM}unoverse deploy aws · unoverse deploy digitalocean${NC}"
|
|
38
|
+
echo -e " ${GREEN}deploy${NC} Ship it to a server ${DIM}(deploy aws · deploy digitalocean; first run asks which cloud)${NC}"
|
|
37
39
|
echo -e " ${GREEN}destroy${NC} Take it down ${DIM}(shows what goes, and what stays)${NC}"
|
|
38
40
|
echo -e " ${DIM}unoverse destroy aws · unoverse destroy digitalocean${NC}"
|
|
39
41
|
echo -e " ${GREEN}db-allow${NC} Let this machine reach the database ${DIM}(run it when you change network)${NC}"
|
package/package.json
CHANGED