all: update: pull sub pull: git pull sub: git submodule update --init --recursive conf: cp -r ./config/keys ./web fromtemplate: cat docker-compose.yml.template | envsubst > docker-compose.yml build: conf docker-compose build --pull push: docker push cr.unil.ch/icnml_web:${CI_COMMIT_SHORT_SHA} docker push cr.unil.ch/icnml_redis:${CI_COMMIT_SHORT_SHA} app: -cd web/app; git checkout master; git merge develop; git push --all; -echo "App update" > .git.message -echo "" >> .git.message -git diff --submodule=log >> .git.message -git add web/app -git commit -F .git.message -rm .git.message -git push -git checkout develop lib: update -git add web/library/MDmisc -git add web/library/NIST -git add web/library/PiAnoS -git add web/library/PMlib -git add web/library/WSQ -git commit -m "Lib update" master: -git checkout master -git merge develop -git push -git checkout develop