From 96a9ecac4e598102133d9a8035feb0247d7dd19a Mon Sep 17 00:00:00 2001 From: Mark Bailey Date: Mon, 4 Nov 2024 15:39:14 -0500 Subject: [PATCH] refactor: restyle help message --- bin/app | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/bin/app b/bin/app index 3d99f48..6bc65cb 100755 --- a/bin/app +++ b/bin/app @@ -78,12 +78,12 @@ _start() { START_match=start _help() { - echo -e "Usage: $0 [help, -h | venv | init | start | freeze]\n" - echo " help, -h: Show this help message" - echo " venv \${python_version}: Create virtual environment with \${python_version}" - echo " init \${python_version}: Initialize virtual environment with \${python_version} and install dependencies" - echo " start \${env(dev|prod):-dev} \${port:-8001} \${host:-0.0.0.0}: Start the application" - echo " freeze: Freeze dependencies" + echo -e "Usage: $0 [help, -h | venv | init | start | freeze]" + echo -e "help, -h:\n\tShow this help message" + echo -e "venv \${python_version}:\n\tCreate virtual environment with \${python_version}" + echo -e "init [--skip-install] \${python_version}:\n\tInitialize virtual environment with \${python_version} and install dependencies" + echo -e "start \${env(dev|prod):-dev} \${port:-8001}\n\t\${host:-0.0.0.0}: Start the application" + echo -e "freeze:\n\tFreeze dependencies" } _check_cmds() {