Skip to content

Instantly share code, notes, and snippets.

@gamlerhart
Last active December 8, 2016 06:14
Show Gist options
  • Save gamlerhart/7e58108a14c66895bc255db598071442 to your computer and use it in GitHub Desktop.
Save gamlerhart/7e58108a14c66895bc255db598071442 to your computer and use it in GitHub Desktop.
hey-mister-postman-blog
turbo build --no-base --overwrite postman.turbo.me
turbo run --name=postman-chrome chrome "https://chrome.google.com/webstore/detail/postman/fhbjgbiflinjbdggehcddcbncdddomop?hl=en"
# 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")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment