mirror of
				https://github.com/bketelsen/bktw.git
				synced 2025-10-30 23:27:39 +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
 |