diff --git a/deploy.sh b/deploy.sh new file mode 100644 index 0000000..8f6ee07 --- /dev/null +++ b/deploy.sh @@ -0,0 +1,9 @@ +#!/bin/bash + +git checkout production && git pull main && git push && git checkout main + +cd deployment + +ansible-playbook todo-setup.yml + +cd ..