Last active
December 8, 2016 06:14
-
-
Save gamlerhart/7e58108a14c66895bc255db598071442 to your computer and use it in GitHub Desktop.
hey-mister-postman-blog
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
turbo build --no-base --overwrite postman.turbo.me |
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
turbo run --name=postman-chrome chrome "https://chrome.google.com/webstore/detail/postman/fhbjgbiflinjbdggehcddcbncdddomop?hl=en" |
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
# First we base our image on Chrome. | |
layer chrome | |
# Let's give the image the name [email protected]/postman by default | |
# Namespace should be your account name or turbo-org account you own. | |
meta namespace = "[email protected]" | |
meta name = "postman" | |
# Let's start chrome, with the Store page open. Ready to add the Postman extension | |
# I didn't find out how to automattically 'Accept & Add' the extension. | |
# You'll have to do it manually for now | |
cmd ("C:\Program Files (x86)\Google\Chrome\Application\chrome.exe","https://chrome.google.com/webstore/detail/postman/fhbjgbiflinjbdggehcddcbncdddomop?hl=en") | |
# Ok, let's start up the Postman Chrome app. | |
# The app-id is the same ID you see in the URL of the Chrome app you want to add | |
startup file ("C:\Program Files (x86)\Google\Chrome\Application\chrome.exe", "--profile-directory=Default", "--app-id=fhbjgbiflinjbdggehcddcbncdddomop") |
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
turbo push [email protected]/postman |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment