Skip to content

Commit 4b446e4

Browse files
committed
refactor: cleanup some unused code (#50)
1 parent 4105276 commit 4b446e4

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

74 files changed

+254
-14667
lines changed

.gitignore

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,14 @@
55
*.so
66
*.dylib
77

8+
# guacamole build files
9+
*.cache
10+
*.o
11+
*.deps
12+
*.libs
13+
*.lo
14+
*.m4
15+
816
# Test binary, build with `go test -c`
917
*.test
1018

CODE_OF_CONDUCT.md

Lines changed: 0 additions & 76 deletions
This file was deleted.

Makefile

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,16 @@ GOPATH=$(shell go env GOPATH)
99
HOME = changkun.de/x/occamy
1010
IMAGE = occamy
1111

12+
compile:
13+
go build -mod vendor -x -o occamyd
14+
.PHONY: compile
15+
1216
build:
1317
docker build -t $(IMAGE):$(VERSION) -t $(IMAGE):latest -f docker/Dockerfile .
1418
.PHONY: occamy
1519

1620
run:
17-
cd docker && docker-compose up
21+
cd docker && docker-compose up -d
1822

1923
stop:
2024
cd docker && docker-compose down

0 commit comments

Comments
 (0)