-
Notifications
You must be signed in to change notification settings - Fork 49
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: Fixing panic in cluster manager and adding a cluster example
- Loading branch information
Showing
65 changed files
with
2,480 additions
and
186 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,38 @@ | ||
# Changelog | ||
|
||
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines. | ||
|
||
### [1.0.3](https://devt.de///compare/v1.0.2...v1.0.3) (2020-03-08) | ||
|
||
|
||
### Bug Fixes | ||
|
||
* Adding compose files and frontend files ([f33d23f](https://devt.de///commit/f33d23f912a3e3d05192a88afadb592b05229040)) | ||
* Adding mining example ([c585876](https://devt.de///commit/c585876025a37539aed7f81c514f0f802baf9c9f)) | ||
* Adding UInt64 conversion function ([a63fe0f](https://devt.de///commit/a63fe0f575fe977e06c6f534718b184d40817128)) | ||
* Make cluster translationRec and transferRec gobable ([34623d8](https://devt.de///commit/34623d897286960180474fb466cec499ec1e0188)) | ||
|
||
### [1.0.2](https://devt.de///compare/v1.0.1...v1.0.2) (2020-02-22) | ||
|
||
|
||
### Bug Fixes | ||
|
||
* Adding more debug tools to cluster ([7ca3ae0](https://devt.de///commit/7ca3ae04cdf3816edb950be0b066c94aff87a70f)) | ||
* Adding proper Graph Manager global values for tests ([127477f](https://devt.de///commit/127477fd541d45258bad36e36f17648bf95bd4d2)) | ||
* Cluster Distributed Storage must assign new locations from 1 ([6c24001](https://devt.de///commit/6c240016c1414f945adb2e47c26542c3a226ef5b)) | ||
* Small fix for debug code and better comments ([3b68724](https://devt.de///commit/3b68724d2ab936ec0c29afc6cc0d191714cd1a23)) | ||
|
||
### [1.0.1](https://devt.de///compare/v1.0.0...v1.0.1) (2019-12-15) | ||
|
||
|
||
### Bug Fixes | ||
|
||
* Minor restructuring ([137c0ae](https://devt.de///commit/137c0ae6e7460fdb96614a555030cde2dcb3d7df)) | ||
|
||
## 1.0.0 (2019-08-30) | ||
|
||
|
||
### Features | ||
|
||
* BREAKING CHANGE: Restructure EliasDB code for go modules / Adding GraphQL interface ([65c38db59e](https://devt.de///commit/65c38db59e)) | ||
* Initial commit ([b2e9cd9a8a](https://devt.de///commit/b2e9cd9a8a)) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
export NAME=eliasdb | ||
export TAG=`git describe --abbrev=0 --tags` | ||
export CGO_ENABLED=0 | ||
export GOOS=linux | ||
|
||
all: build | ||
clean: | ||
rm -f eliasdb | ||
|
||
mod: | ||
go mod init || true | ||
go mod tidy | ||
test: | ||
go test -p 1 ./... | ||
cover: | ||
go test -p 1 --coverprofile=coverage.out ./... | ||
go tool cover --html=coverage.out -o coverage.html | ||
sh -c "open coverage.html || xdg-open coverage.html" 2>/dev/null | ||
fmt: | ||
gofmt -l -w -s . | ||
|
||
vet: | ||
go vet ./... | ||
|
||
build: clean mod fmt vet | ||
go build -o $(NAME) cli/eliasdb.go | ||
|
||
build-win: clean mod fmt vet | ||
GOOS=windows GOARCH=amd64 go build -o $(NAME).exe cli/eliasdb.go | ||
|
||
dist: build build-win | ||
rm -fR dist | ||
|
||
mkdir -p dist/$(NAME)_linux_amd64 | ||
mv $(NAME) dist/$(NAME)_linux_amd64 | ||
cp LICENSE dist/$(NAME)_linux_amd64 | ||
cp NOTICE dist/$(NAME)_linux_amd64 | ||
tar --directory=dist -cz $(NAME)_linux_amd64 > dist/$(NAME)_$(TAG)_linux_amd64.tar.gz | ||
|
||
mkdir -p dist/$(NAME)_windows_amd64 | ||
mv $(NAME).exe dist/$(NAME)_windows_amd64 | ||
cp LICENSE dist/$(NAME)_windows_amd64 | ||
cp NOTICE dist/$(NAME)_windows_amd64 | ||
tar --directory=dist -cz $(NAME)_windows_amd64 > dist/$(NAME)_$(TAG)_windows_amd64.tar.gz | ||
|
||
sh -c 'cd dist; sha256sum *.tar.gz' > dist/checksums.txt |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.