This repository has been archived by the owner on Mar 22, 2024. It is now read-only.
forked from getfider/fider
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
95 lines (53 loc) · 2.25 KB
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
## This is a self-documented Makefile. For usage information, run `make help`:
##
## For more information, refer to https://suva.sh/posts/well-documented-makefiles/
LDFLAGS += -X github.com/getfider/fider/app/pkg/env.commithash=${COMMITHASH}
##@ Running
run: ## Run Fider
godotenv -f .env ./fider
migrate: ## Run all database migrations
godotenv -f .env ./fider migrate
##@ Building
build: build-server build-ssr build-ui ## Build server and ui
build-server: ## Build server
go build -ldflags '-s -w $(LDFLAGS)' -o fider .
build-ui: ## Build all UI assets
NODE_ENV=production npx webpack-cli
build-ssr: ## Build SSR script and locales
npx lingui extract public/
npx lingui compile
NODE_ENV=production node esbuild.config.js
##@ Testing
test: test-server test-ui ## Test server and ui code
test-server: build-server build-ssr ## Run all server tests
godotenv -f .test.env ./fider migrate
godotenv -f .test.env go test ./... -race
test-ui: ## Run all UI tests
TZ=GMT npx jest ./public
coverage-server: build-server build-ssr ## Run all server tests (with code coverage)
godotenv -f .test.env ./fider migrate
godotenv -f .test.env go test ./... -coverprofile=cover.out -coverpkg=all -p=8 -race
##@ E2E Testing
test-e2e-server: ## Run all E2E tests
npx cucumber-js e2e/features/server/**/*.feature --require-module ts-node/register --require 'e2e/**/*.ts' --publish-quiet
test-e2e-ui: ## Run all E2E tests
npx cucumber-js e2e/features/ui/**/*.feature --require-module ts-node/register --require 'e2e/**/*.ts' --publish-quiet
##@ Running (Watch Mode)
watch:
make -j4 watch-server watch-ui
watch-server: migrate ## Build and run server in watch mode
air -c air.conf
watch-ui: ## Build and run server in watch mode
npx webpack-cli -w
##@ Linting
lint: lint-server lint-ui ## Lint server and ui
lint-server: ## Lint server code
golangci-lint run --timeout 2m
lint-ui: ## Lint ui code
npx eslint .
##@ Miscellaneous
clean: ## Remove all build-generated content
rm -rf ./dist
rm -f ssr.js
help: ## Display this help.
@awk 'BEGIN {FS = ":.*##"; printf "\nUsage:\n make \033[36m<target>\033[0m\n"} /^[a-zA-Z_-]+:.*?##/ { printf " \033[36m%-15s\033[0m %s\n", $$1, $$2 } /^##@/ { printf "\n\033[1m%s\033[0m\n", substr($$0, 5) } ' $(MAKEFILE_LIST)