unoverse 0.1.94 → 0.1.95
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 +5 -3
- package/package.json +1 -1
package/operator/lib/help.sh
CHANGED
|
@@ -22,9 +22,11 @@ cmd_help() {
|
|
|
22
22
|
echo -e " ${GREEN}stop${NC} Stop it"
|
|
23
23
|
echo -e " ${GREEN}check${NC} Is it healthy ${DIM}(services, schema, environment)${NC}"
|
|
24
24
|
echo -e " ${GREEN}logs${NC} What is it doing ${DIM}(unoverse logs <service> for one)${NC}"
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
25
|
+
# THE ARGUMENT IS ON THE LINE, not in a footnote. It read as a special case for people
|
|
26
|
+
# with two clouds; it is simply how the command is shaped. A cloud is optional when only
|
|
27
|
+
# one ground exists and required when two do.
|
|
28
|
+
echo -e " ${GREEN}deploy${NC} Ship it to a server ${DIM}· aws or digitalocean${NC}"
|
|
29
|
+
echo -e " ${GREEN}destroy${NC} Take it down ${DIM}· aws or digitalocean, shows what goes and what stays${NC}"
|
|
28
30
|
echo -e " ${GREEN}db-allow${NC} Let this machine reach the database ${DIM}(run it when you change network)${NC}"
|
|
29
31
|
echo ""
|
|
30
32
|
# Owner-only lane. Printed ONLY when publish.sh is present, so a starter kit never
|
package/package.json
CHANGED