Created
April 2, 2020 22:34
-
-
Save mneil/e32dd411a44d4d0cac01b42de5841ef4 to your computer and use it in GitHub Desktop.
Mutato Environment Setup
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
cd /path/to/your/github/repo | |
echo "GITHUB_TOKEN=$GITHUB_TOKEN" > mutato.env | |
aws-vault exec <profile name> -- env | grep AWS_ >> mutato.env | |
docker run -it --rm --env-file mutato.env -v `pwd`:/project stelligent/mutato bootstrap | |
docker run -it --rm --env-file mutato.env -v `pwd`:/project stelligent/mutato deploy |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment