mirror of
https://github.com/bketelsen/bktw.git
synced 2024-11-16 20:25:45 +02:00
19 lines
321 B
Makefile
19 lines
321 B
Makefile
|
|
all: assets/css/main.css app
|
|
|
|
app:
|
|
go build
|
|
|
|
assets/css/main.css: src/css/main.css
|
|
NODE_ENV=production npx tailwindcss-cli@latest build ./src/css/main.css -o ./assets/css/tailwind.css
|
|
|
|
.PHONY:
|
|
linux:
|
|
GOOS=linux GOARCH=amd64 go build
|
|
|
|
.PHONY:
|
|
deploy: linux
|
|
scp ./bktw content.brian.dev:~/bktwnew
|
|
|
|
setup:
|
|
npm install
|