setup.sh 192 B

12345678910
  1. #!/bin/bash
  2. sed -i 's|connectionString = "localhost"|connectionString = "'"${DBHOST}"'"|g' src/hello/hello.go
  3. fw_depends go
  4. go get gopkg.in/mgo.v2
  5. go get ./...
  6. go run src/hello/hello.go &