8 lines
351 B
Bash
8 lines
351 B
Bash
#!/bin/bash
|
|
git config --global credential.helper store
|
|
git config --global user.name ${GIT_USERNAME}
|
|
git config --global user.email ${GIT_EMAIL}
|
|
echo "https://${GIT_USERNAME}:${GIT_TOKEN}@${GIT_HOST}" > ~/.git-credentials
|
|
cd /home
|
|
git clone --single-branch --branch ${GIT_BRANCH} https://repo.pokash.pl/POKASH.PL/ably.do.git
|
|
python /app/monitoring.py |