update git - moving to devdontainer
This commit is contained in:
parent
cb81c7fd63
commit
c2b5c15bb9
2
.vscode/launch.json
vendored
2
.vscode/launch.json
vendored
@ -5,7 +5,7 @@
|
|||||||
"name": "Go Debug - Local",
|
"name": "Go Debug - Local",
|
||||||
"type": "go",
|
"type": "go",
|
||||||
"request": "launch",
|
"request": "launch",
|
||||||
"mode": "auto",
|
"mode": "debug",
|
||||||
"program": "${file}",
|
"program": "${file}",
|
||||||
"args": []
|
"args": []
|
||||||
},
|
},
|
||||||
|
@ -1,10 +1,12 @@
|
|||||||
FROM golang:alpine
|
FROM golang:alpine
|
||||||
|
RUN CGO_ENABLED=0 go install -ldflags "-s -w -extldflags '-static'" github.com/go-delve/delve/cmd/dlv@latest
|
||||||
|
# RUN CGO_ENABLED=0 go get -d github.com/gorilla/mux@latest
|
||||||
|
|
||||||
WORKDIR /app
|
WORKDIR /app
|
||||||
EXPOSE 80 4000
|
EXPOSE 80 4000
|
||||||
|
|
||||||
COPY ./main/* ./
|
COPY ./main/* ./
|
||||||
RUN CGO_ENABLED=0 go install -ldflags "-s -w -extldflags '-static'" github.com/go-delve/delve/cmd/dlv@latest
|
RUN go install github.com/gorilla/mux
|
||||||
RUN go install github.com/gorilla/mux
|
|
||||||
ENV GO111MODULE=off
|
ENV GO111MODULE=off
|
||||||
RUN CGO_ENABLED=0 go build -gcflags "all=-N -l" -o debug-app .
|
RUN CGO_ENABLED=0 go build -gcflags "all=-N -l" -o debug-app .
|
||||||
|
|
||||||
|
@ -2,4 +2,7 @@ module git.mpe.ca/eeckert/egnytewebhandler
|
|||||||
|
|
||||||
go 1.21.4
|
go 1.21.4
|
||||||
|
|
||||||
require github.com/gorilla/mux v1.8.1 // indirect
|
require (
|
||||||
|
github.com/gorilla/mux v1.8.1
|
||||||
|
golang.org/x/text v0.14.0
|
||||||
|
)
|
||||||
|
@ -1,2 +1,4 @@
|
|||||||
github.com/gorilla/mux v1.8.1 h1:TuBL49tXwgrFYWhqrNgrUNEY92u81SPhu7sTdzQEiWY=
|
github.com/gorilla/mux v1.8.1 h1:TuBL49tXwgrFYWhqrNgrUNEY92u81SPhu7sTdzQEiWY=
|
||||||
github.com/gorilla/mux v1.8.1/go.mod h1:AKf9I4AEqPTmMytcMc0KkNouC66V3BtZ4qD5fmWSiMQ=
|
github.com/gorilla/mux v1.8.1/go.mod h1:AKf9I4AEqPTmMytcMc0KkNouC66V3BtZ4qD5fmWSiMQ=
|
||||||
|
golang.org/x/text v0.14.0 h1:ScX5w1eTa3QqT8oi6+ziP7dTV1S2+ALU0bI+0zXKWiQ=
|
||||||
|
golang.org/x/text v0.14.0/go.mod h1:18ZOQIKpY8NJVqYksKHtTdi31H5itFRjB5/qKTNYzSU=
|
||||||
|
13
main/main.go
13
main/main.go
@ -5,6 +5,7 @@ import (
|
|||||||
"io"
|
"io"
|
||||||
"log"
|
"log"
|
||||||
"net/http"
|
"net/http"
|
||||||
|
"time"
|
||||||
|
|
||||||
"github.com/gorilla/mux"
|
"github.com/gorilla/mux"
|
||||||
)
|
)
|
||||||
@ -13,11 +14,17 @@ func readDataStream(resp http.ResponseWriter, request *http.Request) {
|
|||||||
reqBody, _ := io.ReadAll(request.Body)
|
reqBody, _ := io.ReadAll(request.Body)
|
||||||
|
|
||||||
// var jsonBody = json.NewDecoder(request.Body)
|
// var jsonBody = json.NewDecoder(request.Body)
|
||||||
fmt.Println(reqBody)
|
fmt.Println(string(reqBody))
|
||||||
}
|
}
|
||||||
|
|
||||||
func HealthCheck() {
|
func HealthCheck(resp http.ResponseWriter, request *http.Request) {
|
||||||
|
var t = time.Now().String()
|
||||||
|
var MessageText = t + ": Health Check from " + request.RemoteAddr
|
||||||
|
// reqBody, _ := io.ReadAll(request.Body)
|
||||||
|
|
||||||
|
fmt.Println(http.StatusOK, MessageText)
|
||||||
|
resp.WriteHeader(http.StatusOK)
|
||||||
|
resp.Write([]byte(MessageText))
|
||||||
}
|
}
|
||||||
|
|
||||||
func handleRequests() {
|
func handleRequests() {
|
||||||
@ -25,7 +32,7 @@ func handleRequests() {
|
|||||||
mainrouter := mux.NewRouter().StrictSlash(true)
|
mainrouter := mux.NewRouter().StrictSlash(true)
|
||||||
|
|
||||||
mainrouter.HandleFunc("/", readDataStream).Methods("POST")
|
mainrouter.HandleFunc("/", readDataStream).Methods("POST")
|
||||||
// mainrouter.HandleFunc("/healthcheck", HealthCheck).Methods("GET")
|
mainrouter.HandleFunc("/healthcheck", HealthCheck).Methods("GET")
|
||||||
|
|
||||||
log.Fatal(http.ListenAndServe(":10000", mainrouter))
|
log.Fatal(http.ListenAndServe(":10000", mainrouter))
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user