mirror of
https://github.com/akyaiy/GoSally-mvp.git
synced 2026-01-03 04:52:26 +00:00
Implement TLS support: update configuration for TLS, modify server to handle HTTPS, and enhance logging for request handling
This commit is contained in:
5
Makefile
5
Makefile
@@ -1,7 +1,7 @@
|
||||
APP_NAME := node
|
||||
BIN_DIR := bin
|
||||
GOPATH := $(shell go env GOPATH)
|
||||
.PHONY: all build run test fmt vet lint check clean
|
||||
.PHONY: all build run runq test fmt vet lint check clean
|
||||
|
||||
all: build
|
||||
|
||||
@@ -25,6 +25,9 @@ build:
|
||||
run: build
|
||||
./$(BIN_DIR)/$(APP_NAME)
|
||||
|
||||
runq: build
|
||||
./$(BIN_DIR)/$(APP_NAME) | jq
|
||||
|
||||
test:
|
||||
@go test ./... | grep -v '^?' || true
|
||||
|
||||
|
||||
Reference in New Issue
Block a user