This repository has been archived by the owner on May 14, 2021. It is now read-only.
forked from stellar/go
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge WITH CONFLICTS tag 'horizon-v0.15.3' into update-to-0.15.3
- this commit included all files that have status "both modified" with conflicts - in addition, i removed all files that had status "removed by them" since we didn't have any conflicts in these * tag 'horizon-v0.15.3': (322 commits) Horizon 0.15.3 Validate UTF-8 strings in params (stellar#800) Fix horizon reap. (stellar#782) Fix query checking (stellar#792) Fix run_tests (stellar#793) Update protocols/horizon README Horizon Documentation (stellar#763) Horizon 0.15.2 Rebuild test scenarios and fix travis builds (stellar#787) Fix slow trades page query (stellar#785) Update docs with information about successful transactions Fix init-asset-stats command (stellar#775) Change `glide` to `dep` in Horizon README (stellar#784) Update asset.md (stellar#766) update path-finding docs (stellar#776) Update responses.md (stellar#765) Add "Postgres configuration" section in Horizon Admin Guide (stellar#773) Init asset stats command (stellar#764) Go 1.11 builds (stellar#762) Horizon 0.15.1 ...
- Loading branch information
Showing
486 changed files
with
44,209 additions
and
14,954 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 |
---|---|---|
|
@@ -4,3 +4,5 @@ | |
/local-archive | ||
/.vscode/*.sql | ||
.idea | ||
debug | ||
.bundle |
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 |
---|---|---|
@@ -1,11 +1,8 @@ | ||
FROM golang:1.9 | ||
RUN bash -c "curl https://glide.sh/get | sh" | ||
FROM golang:1.10.3 | ||
RUN curl https://raw.githubusercontent.com/golang/dep/master/install.sh | sh | ||
WORKDIR /go/src/github.com/stellar/go | ||
|
||
COPY glide.lock /go/src/github.com/stellar/go | ||
COPY glide.yaml /go/src/github.com/stellar/go | ||
RUN glide install | ||
|
||
COPY . . | ||
RUN dep ensure -v | ||
RUN go install github.com/stellar/go/tools/... | ||
RUN go install github.com/stellar/go/services/... | ||
RUN go install github.com/stellar/go/services/... |
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.