Compare commits

..

No commits in common. "master" and "1.0.0" have entirely different histories.

2 changed files with 2 additions and 6 deletions

View file

@ -20,10 +20,6 @@ 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
"gcloud") "gcs")
install google-cloud-storage install google-cloud-storage
;; ;;
@ -25,4 +25,4 @@ esac
if [ ! -f ".env" ]; then if [ ! -f ".env" ]; then
cp .env.example .env cp .env.example .env
sed -i "s/SERVICE_NAME=\"\"/SERVICE_NAME=\"$1\"" .env sed -i "s/SERVICE_NAME=\"\"/SERVICE_NAME=\"$1\"" .env
fi fi