38 lines
		
	
	
		
			677 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			38 lines
		
	
	
		
			677 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
BINARY=gatus
 | 
						|
 | 
						|
install:
 | 
						|
	go build -mod vendor -o $(BINARY) .
 | 
						|
 | 
						|
run:
 | 
						|
	GATUS_CONFIG_FILE=./config.yaml ./$(BINARY)
 | 
						|
 | 
						|
clean:
 | 
						|
	rm $(BINARY)
 | 
						|
 | 
						|
test:
 | 
						|
	sudo go test ./alerting/... ./client/... ./config/... ./controller/... ./core/... ./jsonpath/... ./pattern/... ./security/... ./storage/... ./util/... ./watchdog/... -cover
 | 
						|
 | 
						|
 | 
						|
##########
 | 
						|
# Docker #
 | 
						|
##########
 | 
						|
 | 
						|
docker-build:
 | 
						|
	docker build -t twinproduction/gatus:latest .
 | 
						|
 | 
						|
docker-run:
 | 
						|
	docker run -p 8080:8080 --name gatus twinproduction/gatus:latest
 | 
						|
 | 
						|
docker-build-and-run: docker-build docker-run
 | 
						|
 | 
						|
 | 
						|
#############
 | 
						|
# Front end #
 | 
						|
#############
 | 
						|
 | 
						|
frontend-build:
 | 
						|
	npm --prefix web/app run build
 | 
						|
 | 
						|
frontend-run:
 | 
						|
	npm --prefix web/app run serve
 |