From eee7ffd9895efbef458c3b814903d98843e7a9b9 Mon Sep 17 00:00:00 2001 From: Victor Westerlund Date: Tue, 15 Mar 2022 07:18:06 -0800 Subject: [PATCH] 1.0.1 (#4) * Update README.md * Update install.sh --- README.md | 4 ++++ install.sh | 4 ++-- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 39a4240..4cfd94b 100644 --- a/README.md +++ b/README.md @@ -20,6 +20,10 @@ git clone https://github.com/VictorWesterlund/cloud-backup 2. **Install dependencies** ```bash +# Install dependencies for your cloud provider "gcloud", "aws" or "azure". Leaving it empty will install everything +bash install.sh aws + +# Or install everything directly with PIP python3 -m pip install -r requirements.txt ``` diff --git a/install.sh b/install.sh index 91d324e..f7479a8 100755 --- a/install.sh +++ b/install.sh @@ -6,7 +6,7 @@ install python-dotenv # Install Python libraries for cloud provider case $1 in - "gcs") + "gcloud") install google-cloud-storage ;; @@ -25,4 +25,4 @@ esac if [ ! -f ".env" ]; then cp .env.example .env sed -i "s/SERVICE_NAME=\"\"/SERVICE_NAME=\"$1\"" .env -fi \ No newline at end of file +fi