2021-11-20 15:31:10 +01:00 | | | 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 |
2021-12-10 14:32:14 +01:00 | | | go run . --verbose |
2021-11-20 21:43:12 +01:00 | | | |
| | | build: |
| | | CGO_ENABLED=0 go build -ldflags '-s -w' -v -o build/codeberg-pages-server ./ |
2022-05-10 18:13:14 +02:00 | | | |
| | | lint: tool-golangci tool-gofumpt |
| | | [ $(gofumpt -extra -l . | wc -l) != 0 ] && { echo 'code not formated'; exit 1; }; \ |
2022-05-10 18:14:28 +02:00 | | | golangci-lint run --timeout 5m |
2022-05-10 18:13:14 +02:00 | | | |
2022-06-11 23:02:06 +02:00 | | | fmt: tool-gofumpt |
| | | gofumpt -w --extra . |
| | | |
2022-05-10 18:13:14 +02:00 | | | tool-golangci: |
| | | @hash golangci-lint> /dev/null 2>&1; if [ $? -ne 0 ]; then \ |
2022-05-30 23:55:37 +02:00 | | | go install github.com/golangci/golangci-lint/cmd/golangci-lint@latest; \ |
2022-05-10 18:13:14 +02:00 | | | fi |
| | | |
| | | tool-gofumpt: |
| | | @hash gofumpt> /dev/null 2>&1; if [ $? -ne 0 ]; then \ |
| | | go install mvdan.cc/gofumpt@latest; \ |
| | | fi |