Compare commits

...

1 commit

Author SHA1 Message Date
Victor Westerlund
eee7ffd989
1.0.1 (#4)
* Update README.md

* Update install.sh
2022-03-15 07:18:06 -08:00
2 changed files with 6 additions and 2 deletions

View file

@ -20,6 +20,10 @@ git clone https://github.com/VictorWesterlund/cloud-backup
2. **Install dependencies** 2. **Install dependencies**
```bash ```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 python3 -m pip install -r requirements.txt
``` ```

View file

@ -6,7 +6,7 @@ install python-dotenv
# Install Python libraries for cloud provider # Install Python libraries for cloud provider
case $1 in case $1 in
"gcs") "gcloud")
install google-cloud-storage install google-cloud-storage
;; ;;