setup.sh 191 B

12345678910
  1. #!/bin/bash
  2. sed -i 's|tcp(.*:3306)|tcp('"${DBHOST}"':3306)|g' src/hello/hello.go
  3. # Where to find the go executable
  4. export PATH="$GOROOT/bin:$PATH"
  5. go get ./...
  6. go run src/hello/hello.go &