diff --git a/install.sh b/install.sh new file mode 100644 index 0000000..700afd5 --- /dev/null +++ b/install.sh @@ -0,0 +1,9 @@ +echo "changing directory to Tasks" +cd $GOPATH/src/github.com/thewhitetulip/Tasks +echo "creating table" +cat schema.sql | sqlite3 tasks.db +echo "building the go binary" +go build -o Tasks + +echo "starting the binary" +./Tasks