2019-05-06 02:32:46 -05:00
|
|
|
run:
|
|
|
|
go run *.go
|
|
|
|
|
|
|
|
gaper:
|
2019-02-01 07:28:17 -06:00
|
|
|
# 'gaper' is a simple and smart golang tool that just rebuilds every time you change a file
|
|
|
|
# go get -u github.com/maxcnunes/gaper
|
|
|
|
gaper
|
|
|
|
|
|
|
|
# simple sortcut to push all git changes
|
|
|
|
push:
|
|
|
|
git pull
|
|
|
|
git add --all
|
|
|
|
-git commit -a -s
|
|
|
|
git push
|
|
|
|
|
|
|
|
# should update every go dependancy (?)
|
|
|
|
update:
|
|
|
|
git pull
|
|
|
|
go get -v -t -u ./...
|
2019-05-07 07:40:07 -05:00
|
|
|
|
|
|
|
# make the json config file human readable
|
|
|
|
json-readable:
|
|
|
|
cat /tmp/cloud-control-panel.json |jq -r --tab
|