46 lines
860 B
Makefile
46 lines
860 B
Makefile
# run tailwindcss tool in watch mode.
|
|
watch-tw:
|
|
npm i
|
|
npx tailwindcss -i ./assets/input.css -o ./assets/pcmt.css --watch
|
|
|
|
# start browser-sync.
|
|
watch-brs:
|
|
npm i
|
|
npx browser-sync start --config bs.js
|
|
|
|
# build app stylesheets using the tailwindcss cli tool.
|
|
tw:
|
|
npm i
|
|
npx tailwindcss -i ./assets/input.css -o ./assets/pcmt.css --minify
|
|
|
|
# build the application.
|
|
build:
|
|
go mod tidy
|
|
go build -v -ldflags="-X main.version=$(git rev-parse --short HEAD)" .
|
|
|
|
# run the application.
|
|
run:
|
|
./pcmt -devel
|
|
|
|
# build and run the application
|
|
dev: build run
|
|
|
|
# generate code based on ent schemas.
|
|
gen:
|
|
go generate -v ./ent
|
|
|
|
# start pg.
|
|
dbstart:
|
|
podman run \
|
|
--name pg \
|
|
--rm \
|
|
-it \
|
|
-e POSTGRES_PASSWORD=postgres \
|
|
-v $PWD/tmp/db:/var/lib/postgres/data \
|
|
-p 127.0.0.1:5432:5432 \
|
|
docker.io/library/postgres:15.2-alpine3.17
|
|
|
|
# stop pg.
|
|
dbstop:
|
|
podman stop pg
|