Skip to content

Commit 1eae4c4

Browse files
author
auxten
committed
move back to github
1 parent a239f4b commit 1eae4c4

File tree

189 files changed

+732
-732
lines changed

Some content is hidden

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

189 files changed

+732
-732
lines changed

.gitlab-ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ before_script:
1616
- go get github.com/wadey/gocovmerge
1717
- mkdir -p $GOPATH/src/gitlab.com/
1818
- cp -r /builds/thunderdb $GOPATH/src/gitlab.com/
19-
- cd $GOPATH/src/gitlab.com/thunderdb/ThunderDB
19+
- cd $GOPATH/src/github.com/CovenantSQL/CovenantSQL
2020
# - dep ensure
2121
- mkdir -p ~/bin/ && export PATH="~/bin/:$PATH"
2222
# - curl -fSL https://github.com/haya14busa/reviewdog/releases/download/$REVIEWDOG_VERSION/reviewdog_linux_amd64 -o ~/bin/reviewdog && chmod +x ~/bin/reviewdog

Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Stage: builder
22
FROM golang:1.10.3-stretch as builder
33

4-
WORKDIR /go/src/gitlab.com/thunderdb/ThunderDB
4+
WORKDIR /go/src/github.com/CovenantSQL/CovenantSQL
55
COPY . .
66
RUN CGO_ENABLED=1 GOOS=linux GOLDFLAGS="-linkmode external -extldflags -static" ./build.sh
77

@@ -13,7 +13,7 @@ ARG VERSION
1313

1414
LABEL \
1515
name="covenantsql" \
16-
homepage="https://gitlab.com/thunderdb/ThunderDB.git" \
16+
homepage="https://github.com/CovenantSQL/CovenantSQL.git" \
1717
maintainer="qi.xiao@covenantsql.io" \
1818
authors="CovenantSQL Team" \
1919
commit="${COMMIT}" \
@@ -26,6 +26,6 @@ ENV COVENANT_CONF=config.yaml
2626
RUN apk --no-cache add ca-certificates
2727

2828
WORKDIR /app
29-
COPY --from=builder /go/src/gitlab.com/thunderdb/ThunderDB/bin/* /app/
29+
COPY --from=builder /go/src/github.com/CovenantSQL/CovenantSQL/bin/* /app/
3030
ENTRYPOINT [ "./docker-entry.sh" ]
3131
EXPOSE 4661

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
<img src="logo/logo_blue.png" width=350>
22

33
[![Go Report Card](https://goreportcard.com/badge/github.com/thunderdb/ThunderDB?style=flat-square)](https://goreportcard.com/report/github.com/thunderdb/ThunderDB)
4-
[![pipeline status](https://gitlab.com/thunderdb/ThunderDB/badges/develop/pipeline.svg)](https://gitlab.com/thunderdb/ThunderDB/commits/develop)
5-
[![Coverage gitlab](https://gitlab.com/thunderdb/ThunderDB/badges/develop/coverage.svg)](https://gitlab.com/thunderdb/ThunderDB/commits/develop)
4+
[![pipeline status](https://github.com/CovenantSQL/CovenantSQL/badges/develop/pipeline.svg)](https://github.com/CovenantSQL/CovenantSQL/commits/develop)
5+
[![Coverage gitlab](https://github.com/CovenantSQL/CovenantSQL/badges/develop/coverage.svg)](https://github.com/CovenantSQL/CovenantSQL/commits/develop)
66
[![Coverage](https://codecov.io/gl/thunderdb/ThunderDB/branch/develop/graph/badge.svg)](https://codecov.io/gl/thunderdb/ThunderDB)
77
[![Build Status](https://travis-ci.org/thunderdb/ThunderDB.png?branch=develop)](https://travis-ci.org/thunderdb/ThunderDB)
88
[![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://opensource.org/licenses/Apache-2.0)

blockproducer/blockindex.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@ import (
2020
"encoding/binary"
2121
"sync"
2222

23-
"gitlab.com/thunderdb/ThunderDB/blockproducer/types"
24-
"gitlab.com/thunderdb/ThunderDB/crypto/hash"
23+
"github.com/CovenantSQL/CovenantSQL/blockproducer/types"
24+
"github.com/CovenantSQL/CovenantSQL/crypto/hash"
2525
)
2626

2727
type blockNode struct {

blockproducer/blockindex_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ import (
2121
"reflect"
2222
"testing"
2323

24-
"gitlab.com/thunderdb/ThunderDB/crypto/hash"
24+
"github.com/CovenantSQL/CovenantSQL/crypto/hash"
2525
)
2626

2727
func TestNewBlockNodeAndIndexKey(t *testing.T) {

blockproducer/chain.go

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -21,19 +21,19 @@ import (
2121
"sync"
2222
"time"
2323

24-
"gitlab.com/thunderdb/ThunderDB/utils"
24+
"github.com/CovenantSQL/CovenantSQL/utils"
2525

26-
"gitlab.com/thunderdb/ThunderDB/merkle"
26+
"github.com/CovenantSQL/CovenantSQL/merkle"
2727

28-
"gitlab.com/thunderdb/ThunderDB/rpc"
28+
"github.com/CovenantSQL/CovenantSQL/rpc"
2929

30-
"gitlab.com/thunderdb/ThunderDB/crypto/hash"
31-
"gitlab.com/thunderdb/ThunderDB/proto"
30+
"github.com/CovenantSQL/CovenantSQL/crypto/hash"
31+
"github.com/CovenantSQL/CovenantSQL/proto"
3232

33+
"github.com/CovenantSQL/CovenantSQL/blockproducer/types"
34+
"github.com/CovenantSQL/CovenantSQL/crypto/kms"
35+
"github.com/CovenantSQL/CovenantSQL/utils/log"
3336
"github.com/coreos/bbolt"
34-
"gitlab.com/thunderdb/ThunderDB/blockproducer/types"
35-
"gitlab.com/thunderdb/ThunderDB/crypto/kms"
36-
"gitlab.com/thunderdb/ThunderDB/utils/log"
3737
)
3838

3939
var (

blockproducer/chain_test.go

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -23,17 +23,17 @@ import (
2323
"testing"
2424
"time"
2525

26-
"gitlab.com/thunderdb/ThunderDB/kayak"
27-
"gitlab.com/thunderdb/ThunderDB/pow/cpuminer"
26+
"github.com/CovenantSQL/CovenantSQL/kayak"
27+
"github.com/CovenantSQL/CovenantSQL/pow/cpuminer"
2828

29-
"gitlab.com/thunderdb/ThunderDB/utils/log"
29+
"github.com/CovenantSQL/CovenantSQL/utils/log"
3030

31-
"gitlab.com/thunderdb/ThunderDB/crypto/asymmetric"
31+
"github.com/CovenantSQL/CovenantSQL/crypto/asymmetric"
3232

33-
"gitlab.com/thunderdb/ThunderDB/blockproducer/types"
34-
"gitlab.com/thunderdb/ThunderDB/proto"
33+
"github.com/CovenantSQL/CovenantSQL/blockproducer/types"
34+
"github.com/CovenantSQL/CovenantSQL/proto"
3535

36-
"gitlab.com/thunderdb/ThunderDB/crypto/kms"
36+
"github.com/CovenantSQL/CovenantSQL/crypto/kms"
3737

3838
. "github.com/smartystreets/goconvey/convey"
3939
)

blockproducer/config.go

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,10 @@ package blockproducer
1919
import (
2020
"time"
2121

22-
"gitlab.com/thunderdb/ThunderDB/blockproducer/types"
23-
"gitlab.com/thunderdb/ThunderDB/kayak"
24-
"gitlab.com/thunderdb/ThunderDB/proto"
25-
"gitlab.com/thunderdb/ThunderDB/rpc"
22+
"github.com/CovenantSQL/CovenantSQL/blockproducer/types"
23+
"github.com/CovenantSQL/CovenantSQL/kayak"
24+
"github.com/CovenantSQL/CovenantSQL/proto"
25+
"github.com/CovenantSQL/CovenantSQL/rpc"
2626
)
2727

2828
const (

blockproducer/db_service.go

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -21,20 +21,20 @@ import (
2121
"sync"
2222
"time"
2323

24+
"github.com/CovenantSQL/CovenantSQL/consistent"
25+
"github.com/CovenantSQL/CovenantSQL/crypto/asymmetric"
26+
"github.com/CovenantSQL/CovenantSQL/crypto/hash"
27+
"github.com/CovenantSQL/CovenantSQL/crypto/kms"
28+
"github.com/CovenantSQL/CovenantSQL/kayak"
29+
"github.com/CovenantSQL/CovenantSQL/metric"
30+
"github.com/CovenantSQL/CovenantSQL/pow/cpuminer"
31+
"github.com/CovenantSQL/CovenantSQL/proto"
32+
"github.com/CovenantSQL/CovenantSQL/route"
33+
"github.com/CovenantSQL/CovenantSQL/rpc"
34+
ct "github.com/CovenantSQL/CovenantSQL/sqlchain/types"
35+
"github.com/CovenantSQL/CovenantSQL/utils/log"
36+
wt "github.com/CovenantSQL/CovenantSQL/worker/types"
2437
dto "github.com/prometheus/client_model/go"
25-
"gitlab.com/thunderdb/ThunderDB/consistent"
26-
"gitlab.com/thunderdb/ThunderDB/crypto/asymmetric"
27-
"gitlab.com/thunderdb/ThunderDB/crypto/hash"
28-
"gitlab.com/thunderdb/ThunderDB/crypto/kms"
29-
"gitlab.com/thunderdb/ThunderDB/kayak"
30-
"gitlab.com/thunderdb/ThunderDB/metric"
31-
"gitlab.com/thunderdb/ThunderDB/pow/cpuminer"
32-
"gitlab.com/thunderdb/ThunderDB/proto"
33-
"gitlab.com/thunderdb/ThunderDB/route"
34-
"gitlab.com/thunderdb/ThunderDB/rpc"
35-
ct "gitlab.com/thunderdb/ThunderDB/sqlchain/types"
36-
"gitlab.com/thunderdb/ThunderDB/utils/log"
37-
wt "gitlab.com/thunderdb/ThunderDB/worker/types"
3838
)
3939

4040
const (

blockproducer/db_service_map.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@ package blockproducer
1919
import (
2020
"sync"
2121

22-
"gitlab.com/thunderdb/ThunderDB/proto"
23-
wt "gitlab.com/thunderdb/ThunderDB/worker/types"
22+
"github.com/CovenantSQL/CovenantSQL/proto"
23+
wt "github.com/CovenantSQL/CovenantSQL/worker/types"
2424
)
2525

2626
// DBMetaPersistence defines database meta persistence api.

0 commit comments

Comments
 (0)