This file contains hidden or 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
| package payment | |
| import ( | |
| "crypto/sha256" | |
| "encoding/hex" | |
| "net/http" | |
| "sort" | |
| "strings" | |
| "time" | |
| ) |
This file contains hidden or 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
| # -*- mode: ruby -*- | |
| # vi: set ft=ruby : | |
| $install_docker_script = <<SCRIPT | |
| echo "Installing dependencies ..." | |
| sudo apt-get update | |
| echo Installing Docker... | |
| curl -sSL https://get.docker.com/ | sh | |
| sudo usermod -aG docker vagrant | |
| SCRIPT |
OlderNewer