Skip to content

Commit

Permalink
refactor: cleanup some unused code (#50)
Browse files Browse the repository at this point in the history
  • Loading branch information
changkun authored Dec 7, 2021
1 parent 4163e6f commit 54de573
Show file tree
Hide file tree
Showing 74 changed files with 254 additions and 14,667 deletions.
8 changes: 8 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,14 @@
*.so
*.dylib

# guacamole build files
*.cache
*.o
*.deps
*.libs
*.lo
*.m4

# Test binary, build with `go test -c`
*.test

Expand Down
76 changes: 0 additions & 76 deletions CODE_OF_CONDUCT.md

This file was deleted.

6 changes: 5 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,16 @@ GOPATH=$(shell go env GOPATH)
HOME = changkun.de/x/occamy
IMAGE = occamy

compile:
go build -mod vendor -x -o occamyd
.PHONY: compile

build:
docker build -t $(IMAGE):$(VERSION) -t $(IMAGE):latest -f docker/Dockerfile .
.PHONY: occamy

run:
cd docker && docker-compose up
cd docker && docker-compose up -d

stop:
cd docker && docker-compose down
Expand Down
Loading

0 comments on commit 54de573

Please sign in to comment.