-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #16 from uselagoon/update-mux-handling
Change: Updated URL format to improve readability
- Loading branch information
Showing
14 changed files
with
191 additions
and
134 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,17 @@ | ||
FROM golang:alpine | ||
FROM golang:1.21-alpine | ||
|
||
WORKDIR /go-dbaas | ||
WORKDIR /internal-services-test | ||
|
||
ADD . . | ||
|
||
RUN go get github.com/joho/godotenv | ||
|
||
RUN go build && chmod +x ./go-dbaas | ||
RUN go build && chmod +x ./internal-services-test | ||
|
||
ENV SOLR_HOST=solr \ | ||
REDIS_HOST=redis \ | ||
OPENSEARCH_HOST=opensearch-2 | ||
|
||
EXPOSE 3000 | ||
|
||
CMD sleep 10 && ./go-dbaas | ||
CMD sleep 10 && ./internal-services-test |
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,29 +1,31 @@ | ||
module go-dbaas | ||
module internal-services-test | ||
|
||
go 1.19 | ||
go 1.21 | ||
|
||
require ( | ||
github.com/cespare/xxhash/v2 v2.1.2 // indirect | ||
github.com/go-redis/redis/v8 v8.11.5 | ||
github.com/go-sql-driver/mysql v1.7.1 | ||
github.com/gorilla/mux v1.8.1 | ||
github.com/lib/pq v1.10.9 | ||
github.com/opensearch-project/opensearch-go v1.1.0 | ||
github.com/vanng822/go-solr v0.10.0 | ||
go.mongodb.org/mongo-driver v1.12.1 | ||
) | ||
|
||
require ( | ||
github.com/cespare/xxhash/v2 v2.2.0 // indirect | ||
github.com/dgryski/go-rendezvous v0.0.0-20200823014737-9f7001d12a5f // indirect | ||
github.com/go-redis/redis/v8 v8.11.5 // indirect | ||
github.com/go-redis/redis/v9 v9.0.0-rc.1 // indirect | ||
github.com/go-sql-driver/mysql v1.6.0 // indirect | ||
github.com/golang/snappy v0.0.1 // indirect | ||
github.com/gorilla/mux v1.8.0 // indirect | ||
github.com/joho/godotenv v1.4.0 // indirect | ||
github.com/klauspost/compress v1.13.6 // indirect | ||
github.com/lib/pq v1.10.7 // indirect | ||
github.com/montanaflynn/stats v0.0.0-20171201202039-1bf9dbcd8cbe // indirect | ||
github.com/opensearch-project/opensearch-go v1.1.0 // indirect | ||
github.com/pkg/errors v0.9.1 // indirect | ||
github.com/stevenferrer/solr-go v0.3.2 // indirect | ||
github.com/vanng822/go-solr v0.10.0 // indirect | ||
github.com/golang/snappy v0.0.4 // indirect | ||
github.com/google/go-cmp v0.5.8 // indirect | ||
github.com/klauspost/compress v1.17.2 // indirect | ||
github.com/montanaflynn/stats v0.7.1 // indirect | ||
github.com/onsi/gomega v1.21.1 // indirect | ||
github.com/stretchr/testify v1.8.0 // indirect | ||
github.com/xdg-go/pbkdf2 v1.0.0 // indirect | ||
github.com/xdg-go/scram v1.1.1 // indirect | ||
github.com/xdg-go/stringprep v1.0.3 // indirect | ||
github.com/youmark/pkcs8 v0.0.0-20181117223130-1be2e3e5546d // indirect | ||
go.mongodb.org/mongo-driver v1.11.0 // indirect | ||
golang.org/x/crypto v0.0.0-20220622213112-05595931fe9d // indirect | ||
golang.org/x/sync v0.0.0-20210220032951-036812b2e83c // indirect | ||
golang.org/x/text v0.3.7 // indirect | ||
github.com/xdg-go/scram v1.1.2 // indirect | ||
github.com/xdg-go/stringprep v1.0.4 // indirect | ||
github.com/youmark/pkcs8 v0.0.0-20201027041543-1326539a0a0a // indirect | ||
golang.org/x/crypto v0.14.0 // indirect | ||
golang.org/x/sync v0.5.0 // indirect | ||
golang.org/x/text v0.14.0 // indirect | ||
) |
Oops, something went wrong.