mirror of
https://codeberg.org/Codeberg/pages-server.git
synced 2025-01-18 16:47:54 +00:00
02bd942b04
continue #75 close #16 - fix regression (from #34) _thanks to @crystal_ - create own gitea client package - more logging - add mock impl of CertDB Co-authored-by: 6543 <6543@obermui.de> Co-authored-by: crystal <crystal@noreply.codeberg.org> Reviewed-on: https://codeberg.org/Codeberg/pages-server/pulls/78 Reviewed-by: crapStone <crapstone@noreply.codeberg.org>
29 lines
856 B
Makefile
29 lines
856 B
Makefile
dev:
|
|
#!/usr/bin/env bash
|
|
set -euxo pipefail
|
|
export ACME_API=https://acme.mock.directory
|
|
export ACME_ACCEPT_TERMS=true
|
|
export PAGES_DOMAIN=localhost.mock.directory
|
|
export RAW_DOMAIN=raw.localhost.mock.directory
|
|
export PORT=4430
|
|
go run . --verbose
|
|
|
|
build:
|
|
CGO_ENABLED=0 go build -ldflags '-s -w' -v -o build/codeberg-pages-server ./
|
|
|
|
lint: tool-golangci tool-gofumpt
|
|
[ $(gofumpt -extra -l . | wc -l) != 0 ] && { echo 'code not formated'; exit 1; }; \
|
|
golangci-lint run --timeout 5m
|
|
|
|
fmt: tool-gofumpt
|
|
gofumpt -w --extra .
|
|
|
|
tool-golangci:
|
|
@hash golangci-lint> /dev/null 2>&1; if [ $? -ne 0 ]; then \
|
|
go install github.com/golangci/golangci-lint/cmd/golangci-lint@latest; \
|
|
fi
|
|
|
|
tool-gofumpt:
|
|
@hash gofumpt> /dev/null 2>&1; if [ $? -ne 0 ]; then \
|
|
go install mvdan.cc/gofumpt@latest; \
|
|
fi
|