diff --git a/README.md b/README.md index bc54c143..2aad4475 100644 --- a/README.md +++ b/README.md @@ -68,25 +68,25 @@ cd whisper-money 2. **Run the setup script:** ```bash -./setup.sh install +./wispermoney install ``` ### Available Commands -Once installed, you can use the setup script for common tasks: +Once installed, you can use the `wispermoney` command for common tasks: ```bash # Start all services -./setup.sh start +./wispermoney start # Stop all services -./setup.sh stop +./wispermoney stop # Upgrade to latest version -./setup.sh upgrade +./wispermoney upgrade # Interactive menu -./setup.sh +./wispermoney ``` ### Development Server diff --git a/setup.sh b/public/setup.sh similarity index 100% rename from setup.sh rename to public/setup.sh diff --git a/wispermoney b/wispermoney new file mode 100755 index 00000000..728fb513 --- /dev/null +++ b/wispermoney @@ -0,0 +1,4 @@ +#!/bin/bash + +SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)" +exec "$SCRIPT_DIR/public/setup.sh" "$@"