You've already forked focalboard
							
							
				mirror of
				https://github.com/mattermost/focalboard.git
				synced 2025-10-31 00:17:42 +02:00 
			
		
		
		
	
		
			
				
	
	
		
			40 lines
		
	
	
		
			1000 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			40 lines
		
	
	
		
			1000 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
| .PHONY: prebuild clean cleanall server server-linux generate watch-server
 | |
| 
 | |
| all: server
 | |
| 
 | |
| prebuild:
 | |
| 	go get github.com/gorilla/mux
 | |
| 	go get github.com/gorilla/websocket
 | |
| 	go get github.com/spf13/viper
 | |
| 	go get github.com/lib/pq
 | |
| 	go get github.com/mattn/go-sqlite3
 | |
| 
 | |
| server:
 | |
| 	cd server; go build -o ../bin/octoserver ./main
 | |
| 
 | |
| server-linux:
 | |
| 	cd server; env GOOS=linux GOARCH=amd64 go build -o ../bin/octoserver ./main
 | |
| 
 | |
| generate:
 | |
| 	cd server; go get -modfile=go.tools.mod github.com/golang/mock/mockgen
 | |
| 	cd server; go get -modfile=go.tools.mod github.com/jteeuwen/go-bindata
 | |
| 	cd server; go generate ./...
 | |
| 
 | |
| server-lint:
 | |
| 	@if ! [ -x "$$(command -v golangci-lint)" ]; then \
 | |
|         echo "golangci-lint is not installed. Please see https://github.com/golangci/golangci-lint#install for installation instructions."; \
 | |
|         exit 1; \
 | |
|     fi; \
 | |
|     cd server; golangci-lint run ./...
 | |
| 
 | |
| watch-server:
 | |
| 	cd server; modd
 | |
| 
 | |
| clean:
 | |
| 	rm -rf bin
 | |
| 	rm -rf dist
 | |
| 	rm -rf webapp/pack
 | |
| 
 | |
| cleanall: clean
 | |
| 	rm -rf webapp/node_modules
 |