2019-05-25 19:18:46 -05:00
|
|
|
# do this
|
|
|
|
|
|
|
|
all:
|
|
|
|
go build
|
|
|
|
./signup
|
|
|
|
|
|
|
|
# this is the raw socket server. it will
|
|
|
|
# show all socket connects recieved
|
|
|
|
raw-socket:
|
|
|
|
go run server.go
|
|
|
|
|
|
|
|
push:
|
|
|
|
git pull
|
|
|
|
git add --all
|
|
|
|
-git commit -a -s
|
|
|
|
git push
|
2019-05-25 19:48:13 -05:00
|
|
|
|
|
|
|
update:
|
|
|
|
go get -v ...
|