mirror of
				https://github.com/GrassrootsEconomics/cic-dw.git
				synced 2025-11-04 08:08:22 +01:00 
			
		
		
		
	- no repeat on failure, picked up on next schedule - enforce uniq on users and tx table to prevent duplicates
		
			
				
	
	
		
			5 lines
		
	
	
		
			106 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			5 lines
		
	
	
		
			106 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
BIN := cic-dw
 | 
						|
 | 
						|
.PHONY: build
 | 
						|
build:
 | 
						|
	CGO_ENABLED=1 GOOS=linux go build -o ${BIN} -ldflags="-s -w" cmd/*.go
 |