mirror of
https://github.com/bketelsen/bktw.git
synced 2024-11-24 08:12:18 +02:00
18 lines
302 B
Makefile
18 lines
302 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
|
||
|
|