mirror of
https://github.com/thewhitetulip/Tasks.git
synced 2025-04-24 13:48:58 +08:00
10 lines
221 B
Bash
10 lines
221 B
Bash
![]() |
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
|