DOCS: update the docs
Signed-off-by: Jeff Carr <jcarr@wit.com>
This commit is contained in:
parent
9b2e3d7200
commit
b3f7c47383
44
Makefile
44
Makefile
|
@ -9,25 +9,9 @@ GO111MODULE=on
|
|||
# this will add branch info & build RFC3339 date also
|
||||
|
||||
run:
|
||||
@echo your version of go must be greater than 2.10. Your version is ${GOVERSION}
|
||||
go build
|
||||
./cloud-control-panel
|
||||
|
||||
build:
|
||||
go build
|
||||
|
||||
default-config: config-delete
|
||||
echo loading the test config
|
||||
./cloud-control-panel --defaultconfig
|
||||
|
||||
debug:
|
||||
@echo your version of go must be greater than 2.10. Your version is ${GOVERSION}
|
||||
go build -ldflags "-X main.GITCOMMIT=${GITCOMMIT} -X main.GOVERSION='${GOVERSION}' -X main.BUILDTIME='${BUILDTIME}' -X main.VERSION=${VERSION}"
|
||||
./cloud-control-panel --debug
|
||||
|
||||
nogui:
|
||||
go build
|
||||
./cloud-control-panel -nogui
|
||||
|
||||
gaper:
|
||||
# 'gaper' is a simple and smart golang tool that just rebuilds every time you change a file
|
||||
|
@ -39,14 +23,6 @@ bad-run:
|
|||
#### NEVER DO THIS. THIS APPEARS TO INDUCE INSTABILITY IN GTK
|
||||
# go run *.go
|
||||
|
||||
# simple sortcut to push all git changes
|
||||
push:
|
||||
# git checkout devel
|
||||
git pull
|
||||
git add --all
|
||||
-git commit -a -s
|
||||
git push --all
|
||||
|
||||
tag-version:
|
||||
# git push --delete origin v0.6.15 # to delete a tag upstream
|
||||
git diff --quiet
|
||||
|
@ -62,14 +38,6 @@ update:
|
|||
git pull
|
||||
go get -v -t -u .
|
||||
|
||||
# make the json config file human readable
|
||||
config-make-readable:
|
||||
cat ~/.config/cloud-control-panel.json |jq -r --tab
|
||||
|
||||
config-delete:
|
||||
echo deleting your current config
|
||||
-mv ~/.config/cloud-control-panel.json /tmp
|
||||
|
||||
diff:
|
||||
git diff
|
||||
|
||||
|
@ -79,15 +47,3 @@ build-darwin:
|
|||
|
||||
build-windows:
|
||||
env GOOS=windows GOARCH=amd64 go build
|
||||
|
||||
# git branch devel
|
||||
# git push --set-upstream origin devel
|
||||
devel:
|
||||
git checkout devel
|
||||
|
||||
merge-devel:
|
||||
git checkout master
|
||||
git pull origin master
|
||||
git merge devel
|
||||
git push origin master
|
||||
git checkout devel
|
||||
|
|
12
README.md
12
README.md
|
@ -1,12 +1,12 @@
|
|||
# cloud-control-panel
|
||||
# control-panel-tests
|
||||
|
||||
This is how the cloud should work. It's time to change the rules.
|
||||
This is a set of demo apps that use the AndLabs UI toolkit.
|
||||
It also uses a wrapper around it that puts all the gtk elements
|
||||
in a structure so they can all be accessed.
|
||||
|
||||
This app requires IPv6 to work.
|
||||
This code should compile and work on Linux, MacOS and Windows.
|
||||
|
||||
Obviously I'm developing this app on Linux so if things are
|
||||
broken in the MacOS or Windows, check the Linux version if
|
||||
possible to see if it is also broken there.
|
||||
It is very *alpha*.
|
||||
|
||||
# IMPORTANT NOTES
|
||||
|
||||
|
|
Loading…
Reference in New Issue