-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile
33 lines (33 loc) · 928 Bytes
/
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
format-templ:
@echo "Formatting templ files..."
@templ fmt .
generate-templ:
@echo "Generating templ files..."
@templ generate -path ./components
generate-templ-watch:
@echo "Generating templ files..."
@templ generate -path ./components -watch
generate-tailwind:
@echo "Generating tailwind files..."
@tailwindcss -i ./styles/input.css -o ./dist/assets/css/[email protected] --minify
generate-tailwind-watch:
@echo "Generating tailwind files..."
@tailwindcss -i ./styles/input.css -o ./dist/assets/css/[email protected] --minify --watch
generate-sql:
@echo "Generating sql files..."
@sqlc generate
clean-testcache:
@echo "Cleaning test cache..."
@go clean -testcache
test-e2e:
@echo "Running E2E tests..."
@go test ./... -tags=e2e
test-e2e-headful:
@echo "Running E2E tests..."
@HEADFUL=true go test ./... -tags=e2e
open-playwright:
@echo "Opening Playwright..."
@playwright open
air:
@echo "Running air..."
@air