| 1234567891011121314151617 |
- #!/bin/sh
- # script/server: Launch the application and any extra required processes
- # locally.
- cat script/misc/oteascii.txt
- set -e
- cd $GOPATH/src/gitote/gitote
- script/update
- echo "==> Updating db…"
- # run all database migrations to ensure everything is up to date.
- go build
|