-
Notifications
You must be signed in to change notification settings - Fork 334
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* add 1.4.0 version changes * ran make release * updated tag for tutorial dockerfiles * add GO111MODULE
- Loading branch information
1 parent
7730c12
commit 2746222
Showing
32 changed files
with
38 additions
and
37 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
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
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,10 +1,10 @@ | ||
{ | ||
"urls": [ | ||
{"name": "Frontend", "url": "https://open-match.dev/api/v1.4.0-rc.1/frontend.swagger.json"}, | ||
{"name": "Backend", "url": "https://open-match.dev/api/v1.4.0-rc.1/backend.swagger.json"}, | ||
{"name": "Query", "url": "https://open-match.dev/api/v1.4.0-rc.1/query.swagger.json"}, | ||
{"name": "MatchFunction", "url": "https://open-match.dev/api/v1.4.0-rc.1/matchfunction.swagger.json"}, | ||
{"name": "Synchronizer", "url": "https://open-match.dev/api/v1.4.0-rc.1/synchronizer.swagger.json"}, | ||
{"name": "Evaluator", "url": "https://open-match.dev/api/v1.4.0-rc.1/evaluator.swagger.json"} | ||
{"name": "Frontend", "url": "https://open-match.dev/api/v1.4.0/frontend.swagger.json"}, | ||
{"name": "Backend", "url": "https://open-match.dev/api/v1.4.0/backend.swagger.json"}, | ||
{"name": "Query", "url": "https://open-match.dev/api/v1.4.0/query.swagger.json"}, | ||
{"name": "MatchFunction", "url": "https://open-match.dev/api/v1.4.0/matchfunction.swagger.json"}, | ||
{"name": "Synchronizer", "url": "https://open-match.dev/api/v1.4.0/synchronizer.swagger.json"}, | ||
{"name": "Evaluator", "url": "https://open-match.dev/api/v1.4.0/evaluator.swagger.json"} | ||
] | ||
} |
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 |
---|---|---|
|
@@ -17,7 +17,7 @@ WORKDIR /app | |
ENV GO111MODULE=on | ||
|
||
COPY . . | ||
RUN go mod edit -replace open-match.dev/[email protected]=open-match.dev/[email protected]-rc.1 | ||
RUN go mod edit -replace open-match.dev/[email protected]=open-match.dev/[email protected] | ||
RUN go mod tidy | ||
RUN go build -o director . | ||
|
||
|
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 |
---|---|---|
|
@@ -17,7 +17,7 @@ WORKDIR /app | |
ENV GO111MODULE=on | ||
|
||
COPY . . | ||
RUN go mod edit -replace open-match.dev/[email protected]=open-match.dev/[email protected]-rc.1 | ||
RUN go mod edit -replace open-match.dev/[email protected]=open-match.dev/[email protected] | ||
RUN go mod tidy | ||
RUN go build -o evaluator . | ||
|
||
|
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 |
---|---|---|
|
@@ -17,7 +17,7 @@ WORKDIR /app | |
ENV GO111MODULE=on | ||
|
||
COPY . . | ||
RUN go mod edit -replace open-match.dev/[email protected]=open-match.dev/[email protected]-rc.1 | ||
RUN go mod edit -replace open-match.dev/[email protected]=open-match.dev/[email protected] | ||
RUN go mod tidy | ||
RUN go build -o frontend . | ||
|
||
|
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 |
---|---|---|
|
@@ -17,7 +17,7 @@ WORKDIR /app | |
ENV GO111MODULE=on | ||
|
||
COPY . . | ||
RUN go mod edit -replace open-match.dev/[email protected]=open-match.dev/[email protected]-rc.1 | ||
RUN go mod edit -replace open-match.dev/[email protected]=open-match.dev/[email protected] | ||
RUN go mod tidy | ||
RUN go build -o matchfunction . | ||
|
||
|
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 |
---|---|---|
|
@@ -17,7 +17,7 @@ WORKDIR /app | |
ENV GO111MODULE=on | ||
|
||
COPY . . | ||
RUN go mod edit -replace open-match.dev/[email protected]=open-match.dev/[email protected]-rc.1 | ||
RUN go mod edit -replace open-match.dev/[email protected]=open-match.dev/[email protected] | ||
RUN go mod tidy | ||
RUN go build -o director . | ||
|
||
|
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 |
---|---|---|
|
@@ -17,7 +17,7 @@ WORKDIR /app | |
ENV GO111MODULE=on | ||
|
||
COPY . . | ||
RUN go mod edit -replace open-match.dev/[email protected]=open-match.dev/[email protected]-rc.1 | ||
RUN go mod edit -replace open-match.dev/[email protected]=open-match.dev/[email protected] | ||
RUN go mod tidy | ||
RUN go build -o evaluator . | ||
|
||
|
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 |
---|---|---|
|
@@ -17,7 +17,7 @@ WORKDIR /app | |
ENV GO111MODULE=on | ||
|
||
COPY . . | ||
RUN go mod edit -replace open-match.dev/[email protected]=open-match.dev/[email protected]-rc.1 | ||
RUN go mod edit -replace open-match.dev/[email protected]=open-match.dev/[email protected] | ||
RUN go mod tidy | ||
RUN go build -o frontend . | ||
|
||
|
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 |
---|---|---|
|
@@ -17,7 +17,7 @@ WORKDIR /app | |
ENV GO111MODULE=on | ||
|
||
COPY . . | ||
RUN go mod edit -replace open-match.dev/[email protected]=open-match.dev/[email protected]-rc.1 | ||
RUN go mod edit -replace open-match.dev/[email protected]=open-match.dev/[email protected] | ||
RUN go mod tidy | ||
RUN go build -o matchfunction . | ||
|
||
|
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 |
---|---|---|
|
@@ -17,7 +17,7 @@ WORKDIR /app | |
ENV GO111MODULE=on | ||
|
||
COPY . . | ||
RUN go mod edit -replace open-match.dev/[email protected]=open-match.dev/[email protected]-rc.1 | ||
RUN go mod edit -replace open-match.dev/[email protected]=open-match.dev/[email protected] | ||
RUN go mod tidy | ||
RUN go build -o director . | ||
|
||
|
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 |
---|---|---|
|
@@ -17,7 +17,7 @@ WORKDIR /app | |
ENV GO111MODULE=on | ||
|
||
COPY . . | ||
RUN go mod edit -replace open-match.dev/[email protected]=open-match.dev/[email protected]-rc.1 | ||
RUN go mod edit -replace open-match.dev/[email protected]=open-match.dev/[email protected] | ||
RUN go mod tidy | ||
RUN go build -o frontend . | ||
|
||
|
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 |
---|---|---|
|
@@ -17,7 +17,7 @@ WORKDIR /app | |
ENV GO111MODULE=on | ||
|
||
COPY . . | ||
RUN go mod edit -replace open-match.dev/[email protected]=open-match.dev/[email protected]-rc.1 | ||
RUN go mod edit -replace open-match.dev/[email protected]=open-match.dev/[email protected] | ||
RUN go mod tidy | ||
RUN go build -o matchfunction . | ||
|
||
|
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 |
---|---|---|
|
@@ -17,7 +17,7 @@ WORKDIR /app | |
ENV GO111MODULE=on | ||
|
||
COPY . . | ||
RUN go mod edit -replace open-match.dev/[email protected]=open-match.dev/[email protected]-rc.1 | ||
RUN go mod edit -replace open-match.dev/[email protected]=open-match.dev/[email protected] | ||
RUN go mod tidy | ||
RUN go build -o director . | ||
|
||
|
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 |
---|---|---|
|
@@ -17,7 +17,7 @@ WORKDIR /app | |
ENV GO111MODULE=on | ||
|
||
COPY . . | ||
RUN go mod edit -replace open-match.dev/[email protected]=open-match.dev/[email protected]-rc.1 | ||
RUN go mod edit -replace open-match.dev/[email protected]=open-match.dev/[email protected] | ||
RUN go mod tidy | ||
RUN go build -o frontend . | ||
|
||
|
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 |
---|---|---|
|
@@ -17,7 +17,7 @@ WORKDIR /app | |
ENV GO111MODULE=on | ||
|
||
COPY . . | ||
RUN go mod edit -replace open-match.dev/[email protected]=open-match.dev/[email protected]-rc.1 | ||
RUN go mod edit -replace open-match.dev/[email protected]=open-match.dev/[email protected] | ||
RUN go mod tidy | ||
RUN go build -o matchfunction . | ||
|
||
|
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 |
---|---|---|
|
@@ -17,7 +17,7 @@ WORKDIR /app | |
ENV GO111MODULE=on | ||
|
||
COPY . . | ||
RUN go mod edit -replace open-match.dev/[email protected]=open-match.dev/[email protected]-rc.1 | ||
RUN go mod edit -replace open-match.dev/[email protected]=open-match.dev/[email protected] | ||
RUN go mod tidy | ||
RUN go build -o director . | ||
|
||
|
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 |
---|---|---|
|
@@ -17,7 +17,7 @@ WORKDIR /app | |
ENV GO111MODULE=on | ||
|
||
COPY . . | ||
RUN go mod edit -replace open-match.dev/[email protected]=open-match.dev/[email protected]-rc.1 | ||
RUN go mod edit -replace open-match.dev/[email protected]=open-match.dev/[email protected] | ||
RUN go mod tidy | ||
RUN go build -o frontend . | ||
|
||
|
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 |
---|---|---|
|
@@ -17,7 +17,7 @@ WORKDIR /app | |
ENV GO111MODULE=on | ||
|
||
COPY . . | ||
RUN go mod edit -replace open-match.dev/[email protected]=open-match.dev/[email protected]-rc.1 | ||
RUN go mod edit -replace open-match.dev/[email protected]=open-match.dev/[email protected] | ||
RUN go mod tidy | ||
RUN go build -o matchfunction . | ||
|
||
|
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 |
---|---|---|
|
@@ -17,7 +17,7 @@ WORKDIR /app | |
ENV GO111MODULE=on | ||
|
||
COPY . . | ||
RUN go mod edit -replace open-match.dev/[email protected]=open-match.dev/[email protected]-rc.1 | ||
RUN go mod edit -replace open-match.dev/[email protected]=open-match.dev/[email protected] | ||
RUN go mod tidy | ||
RUN go build -o director . | ||
|
||
|
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 |
---|---|---|
|
@@ -17,7 +17,7 @@ WORKDIR /app | |
ENV GO111MODULE=on | ||
|
||
COPY . . | ||
RUN go mod edit -replace open-match.dev/[email protected]=open-match.dev/[email protected]-rc.1 | ||
RUN go mod edit -replace open-match.dev/[email protected]=open-match.dev/[email protected] | ||
RUN go mod tidy | ||
RUN go build -o frontend . | ||
|
||
|
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 |
---|---|---|
|
@@ -17,7 +17,7 @@ WORKDIR /app | |
ENV GO111MODULE=on | ||
|
||
COPY . . | ||
RUN go mod edit -replace open-match.dev/[email protected]=open-match.dev/[email protected]-rc.1 | ||
RUN go mod edit -replace open-match.dev/[email protected]=open-match.dev/[email protected] | ||
RUN go mod tidy | ||
RUN go build -o matchfunction . | ||
|
||
|
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 |
---|---|---|
|
@@ -17,7 +17,7 @@ WORKDIR /app | |
ENV GO111MODULE=on | ||
|
||
COPY . . | ||
RUN go mod edit -replace open-match.dev/[email protected]=open-match.dev/[email protected]-rc.1 | ||
RUN go mod edit -replace open-match.dev/[email protected]=open-match.dev/[email protected] | ||
RUN go mod tidy | ||
RUN go build -o director . | ||
|
||
|
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 |
---|---|---|
|
@@ -17,7 +17,7 @@ WORKDIR /app | |
ENV GO111MODULE=on | ||
|
||
COPY . . | ||
RUN go mod edit -replace open-match.dev/[email protected]=open-match.dev/[email protected]-rc.1 | ||
RUN go mod edit -replace open-match.dev/[email protected]=open-match.dev/[email protected] | ||
RUN go mod tidy | ||
RUN go build -o frontend . | ||
|
||
|
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 |
---|---|---|
|
@@ -17,7 +17,7 @@ WORKDIR /app | |
ENV GO111MODULE=on | ||
|
||
COPY . . | ||
RUN go mod edit -replace open-match.dev/[email protected]=open-match.dev/[email protected]-rc.1 | ||
RUN go mod edit -replace open-match.dev/[email protected]=open-match.dev/[email protected] | ||
RUN go mod tidy | ||
RUN go build -o matchfunction . | ||
|
||
|
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 |
---|---|---|
|
@@ -17,7 +17,7 @@ WORKDIR /app | |
ENV GO111MODULE=on | ||
|
||
COPY . . | ||
RUN go mod edit -replace open-match.dev/[email protected]=open-match.dev/[email protected]-rc.1 | ||
RUN go mod edit -replace open-match.dev/[email protected]=open-match.dev/[email protected] | ||
RUN go mod tidy | ||
RUN go build -o director . | ||
|
||
|
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 |
---|---|---|
|
@@ -17,7 +17,7 @@ WORKDIR /app | |
ENV GO111MODULE=on | ||
|
||
COPY . . | ||
RUN go mod edit -replace open-match.dev/[email protected]=open-match.dev/[email protected]-rc.1 | ||
RUN go mod edit -replace open-match.dev/[email protected]=open-match.dev/[email protected] | ||
RUN go mod tidy | ||
RUN go build -o frontend . | ||
|
||
|
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 |
---|---|---|
|
@@ -17,7 +17,7 @@ WORKDIR /app | |
ENV GO111MODULE=on | ||
|
||
COPY . . | ||
RUN go mod edit -replace open-match.dev/[email protected]=open-match.dev/[email protected]-rc.1 | ||
RUN go mod edit -replace open-match.dev/[email protected]=open-match.dev/[email protected] | ||
RUN go mod tidy | ||
RUN go build -o matchfunction . | ||
|
||
|