unoverse 0.1.45 → 0.1.46
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 +1 -1
- package/package.json +1 -1
package/operator/lib/help.sh
CHANGED
|
@@ -22,6 +22,7 @@ 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
|
+
echo -e " ${GREEN}ground${NC} Prepare a server in your cloud ${DIM}(unoverse ground do|aws, prefills Terraform)${NC}"
|
|
25
26
|
echo -e " ${GREEN}deploy${NC} Ship it to your server ${DIM}(images + your work + migrations)${NC}"
|
|
26
27
|
echo ""
|
|
27
28
|
# Owner-only lane. Printed ONLY when publish.sh is present, so a starter kit never
|
|
@@ -29,7 +30,6 @@ cmd_help() {
|
|
|
29
30
|
if type cmd_publish >/dev/null 2>&1; then
|
|
30
31
|
echo -e " ${BOLD}${DIM}Platform owner${NC}"
|
|
31
32
|
echo -e " ${GREEN}publish${NC} Full release. Every lane whose content changed"
|
|
32
|
-
echo -e " ${GREEN}ground${NC} Prefill terraform.tfvars from your cloud CLI ${DIM}(do|aws)${NC}"
|
|
33
33
|
echo -e " ${GREEN}dev${NC} Run the monorepo locally"
|
|
34
34
|
echo ""
|
|
35
35
|
fi
|
package/package.json
CHANGED