2016-02-22 20:05:22 +00:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
# Install Goes
|
|
|
|
go get github.com/satori/go.uuid
|
|
|
|
go get github.com/pebbe/zmq4
|
2016-06-12 23:05:52 +00:00
|
|
|
go build -o bin/simpleserver simpleserver/simpleserver.go
|
|
|
|
|
|
|
|
sudo mkdir /opt/goes
|
|
|
|
sudo cp -R bin /opt/goes
|
|
|
|
sudo cp -R scripts /opt/goes
|
2016-02-22 20:05:22 +00:00
|
|
|
|
|
|
|
# Reminders
|
|
|
|
echo Goes reminders:
|
|
|
|
echo - Set the system TimeZone for expected day projection
|
2016-06-12 23:05:52 +00:00
|
|
|
echo '- Configure start script (/opt/goes/scripts/start.sh)'
|