1
0
mirror of https://github.com/bketelsen/bktw.git synced 2024-11-24 08:12:18 +02:00
bktw/Makefile

18 lines
302 B
Makefile
Raw Normal View History

2021-02-23 20:20:05 +02:00
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